From 56bd212ab679dd7fa6db5cc5ebcd994a2f3fdc15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Preu=C3=9F?= Date: Mon, 20 Feb 2023 23:52:16 +0100 Subject: [PATCH] Fix closing --- src/runtime/components/BitinflowTable.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/runtime/components/BitinflowTable.vue b/src/runtime/components/BitinflowTable.vue index 3041978..b122e7f 100644 --- a/src/runtime/components/BitinflowTable.vue +++ b/src/runtime/components/BitinflowTable.vue @@ -103,7 +103,7 @@ {{ option.label }} @@ -189,6 +189,10 @@ export default { }, click(item) { this.$emit('click', item); + }, + clickOption(option) { + option.action(this.selectedItems) + this.selectAll(false) } } }