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
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
<v-toolbar-title>Create Query</v-toolbar-title>
<v-spacer />
<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
</v-btn>
<v-btn :disabled="!valid || !token" color="primary" @click="execute">
......@@ -178,6 +178,7 @@ export default {
this.loading = false
}
},
/*
async save () {
this.$refs.form.validate()
const query = this.query.sql.replaceAll('`', '')
......@@ -197,6 +198,7 @@ export default {
this.loading = false
}
},
*/
async buildQuery () {
if (!this.table) {
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment