From 3413dda1f41cdb68e08eb2ea84a9ef43bf2d7531 Mon Sep 17 00:00:00 2001 From: Andreas Kristensen Date: Mon, 30 Jan 2023 10:51:55 +0100 Subject: [PATCH] Fix error in unselectable behaviour Fixed an error, that cause the "unselectable" prop behaviour to be the inverse of the expected. --- components/selectbutton/SelectButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/selectbutton/SelectButton.vue b/components/selectbutton/SelectButton.vue index 984b10d72..152586ddd 100755 --- a/components/selectbutton/SelectButton.vue +++ b/components/selectbutton/SelectButton.vue @@ -85,7 +85,7 @@ export default { let selected = this.isSelected(option); - if (selected && !this.unselectable) { + if (selected && this.unselectable) { return; }