Skip to content

Commit

Permalink
Fixed an issue with the selected command panel wasn't propagating cha…
Browse files Browse the repository at this point in the history
…nges
  • Loading branch information
cohansen committed Jun 25, 2024
1 parent 547a264 commit 08413cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/sequencing/form/SelectedCommand.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 08413cd

Please sign in to comment.