Loading client/src/components/Workflow/Editor/Index.vue +1 −3 Original line number Diff line number Diff line Loading @@ -44,9 +44,7 @@ <span class="sr-only">Workflow Editor</span> <span> {{ name || "..." }} <i v-if="isNewTempWorkflow"> (Click Save <span class="fa fa-floppy-o" /> to create this workflow) </i> <i v-if="hasChanges" class="text-muted"> (unsaved changes) </i> </span> </div> </div> Loading client/src/components/Workflow/Editor/Options.vue +1 −1 Original line number Diff line number Diff line Loading @@ -28,7 +28,7 @@ const { confirm } = useConfirmDialog(); const saveHover = computed(() => { if (props.isNewTempWorkflow) { return "Create a new workflow"; return "Save Workflow"; } else if (!props.hasChanges) { return "Workflow has no changes"; } else if (props.hasInvalidConnections) { Loading Loading
client/src/components/Workflow/Editor/Index.vue +1 −3 Original line number Diff line number Diff line Loading @@ -44,9 +44,7 @@ <span class="sr-only">Workflow Editor</span> <span> {{ name || "..." }} <i v-if="isNewTempWorkflow"> (Click Save <span class="fa fa-floppy-o" /> to create this workflow) </i> <i v-if="hasChanges" class="text-muted"> (unsaved changes) </i> </span> </div> </div> Loading
client/src/components/Workflow/Editor/Options.vue +1 −1 Original line number Diff line number Diff line Loading @@ -28,7 +28,7 @@ const { confirm } = useConfirmDialog(); const saveHover = computed(() => { if (props.isNewTempWorkflow) { return "Create a new workflow"; return "Save Workflow"; } else if (!props.hasChanges) { return "Workflow has no changes"; } else if (props.hasInvalidConnections) { Loading