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:
@@ -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 () {
|
||||||
|
|||||||
Reference in New Issue
Block a user