From 289817402c717e1775d4eba318ec6dbdbb3ea56a Mon Sep 17 00:00:00 2001 From: bymyself Date: Fri, 11 Apr 2025 07:38:09 -0700 Subject: [PATCH] await toolbox commands added by extensions --- src/components/graph/SelectionToolbox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/graph/SelectionToolbox.vue b/src/components/graph/SelectionToolbox.vue index a60bbda4f..d8c7baf9b 100644 --- a/src/components/graph/SelectionToolbox.vue +++ b/src/components/graph/SelectionToolbox.vue @@ -65,7 +65,7 @@ severity="secondary" text :icon="typeof command.icon === 'function' ? command.icon() : command.icon" - @click="() => commandStore.execute(command.id)" + @click="async () => await commandStore.execute(command.id)" v-tooltip.top="{ value: st(`commands.${normalizeI18nKey(command.id)}.label`, '') || undefined,