Unverified Commit ec4aa2ba authored by davelopez's avatar davelopez
Browse files

Fix FormDirectory initial state

Without this, the form will think there is a directory_uri set, letting you Run the export_remote tool even if the directory_uri value was required and not yet provided by the user.
parent f414aa87
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -74,6 +74,9 @@ export default {
            return regex.test(this.currentDirectoryName);
        },
    },
    mounted() {
        this.updateURL(true);
    },
    methods: {
        removePath(index) {
            this.pathChunks = this.pathChunks.slice(0, index);