From 08413cdde3470f153ced583a38059d749aa51ed6 Mon Sep 17 00:00:00 2001 From: Cody Hansen Date: Thu, 20 Jun 2024 09:45:41 -1000 Subject: [PATCH] Fixed an issue with the selected command panel wasn't propagating changes --- src/components/sequencing/form/SelectedCommand.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/sequencing/form/SelectedCommand.svelte b/src/components/sequencing/form/SelectedCommand.svelte index a910bbeecf..a236f226e6 100644 --- a/src/components/sequencing/form/SelectedCommand.svelte +++ b/src/components/sequencing/form/SelectedCommand.svelte @@ -161,7 +161,8 @@ (hasAncestorWithId(document.activeElement, ID_COMMAND_DETAIL_PANE) || // Searchable Dropdown has pop out that is not a descendent document.activeElement?.tagName === 'BODY' || - document.activeElement?.tagName === 'BUTTON') + document.activeElement?.tagName === 'BUTTON' || + document.activeElement?.tagName === 'INPUT') ) { const currentVal = editorSequenceView.state.sliceDoc(token.node.from, token.node.to); if (currentVal !== val) {