feat: Only show workflows shared with you in the overview page (#14773)

This commit is contained in:
Ricardo Espinoza
2025-04-28 13:42:05 -04:00
committed by GitHub
parent cdd3ce4cd4
commit eb465763cf
4 changed files with 91 additions and 32 deletions

View File

@@ -136,12 +136,7 @@ const actions = computed(() => {
});
}
if (
workflowPermissions.value.update &&
showFolders.value &&
!props.readOnly &&
!isSomeoneElsesWorkflow.value
) {
if (workflowPermissions.value.update && showFolders.value && !props.readOnly) {
items.push({
label: locale.baseText('folders.actions.moveToFolder'),
value: WORKFLOW_LIST_ITEM_ACTIONS.MOVE_TO_FOLDER,