From 97e342d74962081a3912aeba0828554cfca11b18 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Tue, 7 Jan 2025 09:19:30 +0100 Subject: [PATCH] UI: fix select disabled --- pkgs/webview-ui/app/src/Form/fields/Select.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/webview-ui/app/src/Form/fields/Select.tsx b/pkgs/webview-ui/app/src/Form/fields/Select.tsx index 5b92cf391..18a98534b 100644 --- a/pkgs/webview-ui/app/src/Form/fields/Select.tsx +++ b/pkgs/webview-ui/app/src/Form/fields/Select.tsx @@ -153,6 +153,7 @@ export function SelectInput(props: SelectInputpProps) { // Currently the popover only opens with onClick // Options are not selectable with keyboard tabIndex={-1} + disabled={props.disabled} onClick={() => { const popover = document.getElementById(_id); if (popover) {