1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 02:28:54 +08:00

hide Export and Delete (group functions)

This commit is contained in:
lana-k
2020-10-15 20:29:42 +02:00
parent 769c146d95
commit 865b8ea10f

View File

@@ -15,8 +15,8 @@
Import
</label>
</button>
<button class="toolbar">Export</button>
<button class="toolbar">Delete</button>
<button class="toolbar" v-show="selectedQueries.length > 0">Export</button>
<button class="toolbar" v-show="selectedQueries.length > 0">Delete</button>
</div>
<div id="toolbar-search">
<text-field placeholder="Search query by name" width="300px"/>
@@ -131,7 +131,8 @@ export default {
queries: [],
newName: null,
currentQueryIndex: null,
errorMsg: null
errorMsg: null,
selectedQueries: []
}
},
created () {