1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +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 f16fab2d7a

View File

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