Skip to content
Snippets Groups Projects
Commit 00bbe314 authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Disable "Save without execution"

We don't need this according to Moritz, AFAIK


Former-commit-id: 3d486776
parent e963e9a3
Branches
Tags
No related merge requests found
...@@ -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