From b27c741d7df6d8a61c2d38978862dd07157a9276 Mon Sep 17 00:00:00 2001 From: Simula_r <18093452+simula-r@users.noreply.github.com> Date: Wed, 29 Oct 2025 21:46:47 -0700 Subject: [PATCH] Feat/vue nodes try it now banner (#6362) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Banner to try vue nodes. Clicking try it now will flip shouldRenderVueNodes = true. ## Screenshots (if applicable) image ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6362-Feat-vue-nodes-try-it-now-banner-29b6d73d365081c29f04f9126f06ee9d) by [Unito](https://www.unito.io) --- .../fixtures/utils/litegraphUtils.ts | 2 +- src/components/graph/GraphCanvas.vue | 6 +- src/components/toast/GlobalToast.vue | 1 + src/components/topbar/TryVueNodeBanner.vue | 71 +++++++++++++++++++ src/locales/en/main.json | 4 ++ 5 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 src/components/topbar/TryVueNodeBanner.vue diff --git a/browser_tests/fixtures/utils/litegraphUtils.ts b/browser_tests/fixtures/utils/litegraphUtils.ts index 0449d05e4..5533fcaaa 100644 --- a/browser_tests/fixtures/utils/litegraphUtils.ts +++ b/browser_tests/fixtures/utils/litegraphUtils.ts @@ -503,7 +503,7 @@ export class NodeReference { for (const position of clickPositions) { // Clear any selection first await this.comfyPage.canvas.click({ - position: { x: 50, y: 50 }, + position: { x: 250, y: 250 }, force: true }) await this.comfyPage.nextFrame() diff --git a/src/components/graph/GraphCanvas.vue b/src/components/graph/GraphCanvas.vue index 90d2b30b9..a8ecbaab2 100644 --- a/src/components/graph/GraphCanvas.vue +++ b/src/components/graph/GraphCanvas.vue @@ -3,8 +3,10 @@ -