Commit 76cbfbe2 authored by Ahmed Awan's avatar Ahmed Awan
Browse files

replace `Create` with `Save` when inside the editor

parent 7d8a28c5
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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>
+1 −1
Original line number Diff line number Diff line
@@ -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) {