mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Swap Activate/Deactivate texts in FloatingToolbar (#12526)
This commit is contained in:
parent
35b618098b
commit
44679b42aa
|
@ -24,7 +24,7 @@ const { isExecuting } = useCanvas();
|
|||
const { isDisabled, render } = useCanvasNode();
|
||||
|
||||
const nodeDisabledTitle = computed(() => {
|
||||
return isDisabled.value ? i18n.baseText('node.disable') : i18n.baseText('node.enable');
|
||||
return isDisabled.value ? i18n.baseText('node.enable') : i18n.baseText('node.disable');
|
||||
});
|
||||
|
||||
const isStickyColorSelectorOpen = ref(false);
|
||||
|
|
Loading…
Reference in a new issue