From 3f2d91014bb1181df7f9fb53712d37a3804f9075 Mon Sep 17 00:00:00 2001 From: "brian.mulier" Date: Mon, 3 Feb 2025 14:00:13 +0100 Subject: [PATCH] fix(ui): switching from custom Flow blueprints tab to dashboard was not working --- ui/src/override/components/flows/blueprints/Blueprints.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/src/override/components/flows/blueprints/Blueprints.vue b/ui/src/override/components/flows/blueprints/Blueprints.vue index b593b216078..897af63b0a8 100644 --- a/ui/src/override/components/flows/blueprints/Blueprints.vue +++ b/ui/src/override/components/flows/blueprints/Blueprints.vue @@ -122,6 +122,11 @@ this.embeddedTab = newTab.name; }, + }, + watch: { + tab(newVal) { + this.embeddedTab = newVal; + } } };