From 55b8236c8d0cd7cc6852c6cfe4683dd13a4402d2 Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Fri, 6 Mar 2026 09:35:18 -0800 Subject: [PATCH] Fix localization on share and hide entry (#9395) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A placeholder share entry was added in #9368, but the localization for this share label was then removed in #9361. This localization is re-added in a location that is less likely to be overwritten and the menu item is set to hidden. I'll manually connect it to the workflow sharing feature flag in a followup PR after that has been merged. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9395-Fix-localization-on-share-and-hide-entry-3196d73d36508146a343f625a5327bdd) by [Unito](https://www.unito.io) --- src/composables/useWorkflowActionsMenu.ts | 5 ++--- src/locales/en/main.json | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/composables/useWorkflowActionsMenu.ts b/src/composables/useWorkflowActionsMenu.ts index f48122e6c4..b4e186eacc 100644 --- a/src/composables/useWorkflowActionsMenu.ts +++ b/src/composables/useWorkflowActionsMenu.ts @@ -189,11 +189,10 @@ export function useWorkflowActionsMenu( addItem({ id: 'share', - label: t('menuLabels.Share'), + label: t('breadcrumbsMenu.share'), icon: 'icon-[comfy--send]', command: async () => {}, - disabled: true, - visible: isRoot + visible: false }) addItem({ diff --git a/src/locales/en/main.json b/src/locales/en/main.json index 0bd6475cf7..3cdf0e0a67 100644 --- a/src/locales/en/main.json +++ b/src/locales/en/main.json @@ -2604,7 +2604,8 @@ "deleteWorkflow": "Delete Workflow", "deleteBlueprint": "Delete Blueprint", "enterNewName": "Enter new name", - "missingNodesWarning": "Workflow contains unsupported nodes (highlighted red)." + "missingNodesWarning": "Workflow contains unsupported nodes (highlighted red).", + "share": "Share" }, "shortcuts": { "shortcuts": "Shortcuts",