From e1294d66ccb296728c1c7cfe1f8009ee2d201339 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Tue, 16 Dec 2025 13:37:52 -0800 Subject: [PATCH] Hide queue overlay header menu on cloud (#7571) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hide the QueueOverlayHeader more-options (…) menu when running in Cloud distribution This is being hidden instead of fixed because it deletes all user assets on cloud, will be touched by /jobs, replaced by the second iteration of design changes, along with changes to asset deletion happening soon. It would be too risky to have a proper fix for it in the cloud deploy today. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7571-Hide-queue-overlay-header-menu-on-cloud-2cb6d73d3650815a8faac8a8f0de91f0) by [Unito](https://www.unito.io) --------- Co-authored-by: GitHub Action --- src/components/queue/QueueOverlayHeader.vue | 3 ++- src/renderer/extensions/vueNodes/components/LGraphNode.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/queue/QueueOverlayHeader.vue b/src/components/queue/QueueOverlayHeader.vue index 9b45cc57b..dbffcec4e 100644 --- a/src/components/queue/QueueOverlayHeader.vue +++ b/src/components/queue/QueueOverlayHeader.vue @@ -17,7 +17,7 @@ -
+
{ const handleResizePointerDown = (event: PointerEvent) => { if (event.button !== 0) return - if(!shouldHandleNodePointerEvents.value) return + if (!shouldHandleNodePointerEvents.value) return if (nodeData.flags?.pinned) return startResize(event) }