Skip to content
Snippets Groups Projects
Verified Commit 3d486776 authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Disable "Save without execution"

We don't need this according to Moritz, AFAIK
parent 1d594e52
No related branches found
No related tags found
3 merge requests!81New stable release,!43Merge dev to master,!41UI March
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<v-toolbar-title>Create Query</v-toolbar-title> <v-toolbar-title>Create Query</v-toolbar-title>
<v-spacer /> <v-spacer />
<v-toolbar-title> <v-toolbar-title>
<v-btn :disabled="!valid || !token" color="blue-grey white--text" @click="save"> <v-btn v-if="false" :disabled="!valid || !token" color="blue-grey white--text" @click="save">
Save without execution Save without execution
</v-btn> </v-btn>
<v-btn :disabled="!valid || !token" color="primary" @click="execute"> <v-btn :disabled="!valid || !token" color="primary" @click="execute">
...@@ -178,6 +178,7 @@ export default { ...@@ -178,6 +178,7 @@ export default {
this.loading = false this.loading = false
} }
}, },
/*
async save () { async save () {
this.$refs.form.validate() this.$refs.form.validate()
const query = this.query.sql.replaceAll('`', '') const query = this.query.sql.replaceAll('`', '')
...@@ -197,6 +198,7 @@ export default { ...@@ -197,6 +198,7 @@ export default {
this.loading = false this.loading = false
} }
}, },
*/
async buildQuery () { async buildQuery () {
if (!this.table) { if (!this.table) {
return return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment