From 2539a7d2ced6aab40c099a8d149fc39110d8bfcc Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sun, 23 Nov 2025 21:51:26 -0800 Subject: [PATCH] fix: tabindex prop should be number type in MultiSelect component (#6875) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change to use number prop to fix warnings: ``` WorkflowTemplateSelectorDialog.vue:7 [Vue warn]: Invalid prop: type check failed for prop "tabindex". Expected Number with value 0, got String with value "0". at at at at maximized=false > at onBeforeLeave=fn ... > at onAfterEnter=fn ... > at at ... > at at ``` ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6875-fix-tabindex-prop-should-be-number-type-in-MultiSelect-component-2b46d73d3650816d8288fec4cc0f7e7f) by [Unito](https://www.unito.io) --- src/components/input/MultiSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/MultiSelect.vue b/src/components/input/MultiSelect.vue index 9a54ae9e3..d4b2c2172 100644 --- a/src/components/input/MultiSelect.vue +++ b/src/components/input/MultiSelect.vue @@ -83,7 +83,7 @@ role="combobox" :aria-expanded="false" aria-haspopup="listbox" - tabindex="0" + :tabindex="0" >