mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
only Enable Delete if there is one selection
This commit is contained in:
parent
02016cbbf3
commit
29bfd7f708
1 changed files with 1 additions and 1 deletions
|
@ -71,6 +71,6 @@ onMounted(async() => {
|
|||
<button @click="load">Refresh</button>
|
||||
<button @click="load">Create</button>
|
||||
<button @click="load" :disabled="selection.length != 1">Edit</button>
|
||||
<button @click="deleteInterface" :disabled="selection.length == 0">Delete</button>
|
||||
<button @click="deleteInterface" :disabled="selection.length != 1">Delete</button>
|
||||
</TableView>
|
||||
</template>
|
Loading…
Add table
Reference in a new issue