diff options
Diffstat (limited to 'ext/fg/js/frame.js')
| -rw-r--r-- | ext/fg/js/frame.js | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 38848bfc..66d3a054 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -43,9 +43,9 @@ function onDomContentLoaded() {  function onMessage(e) {      const {action, params} = e.data, handlers = { -        setActionState: ({index, state}) => { +        setActionState: ({index, state, sequence}) => {              for (const mode in state) { -                const matches = document.querySelectorAll(`.action-link[data-index="${index}"][data-mode="${mode}"]`); +                const matches = document.querySelectorAll(`.action-link[data-sequence="${sequence}"][data-index="${index}"][data-mode="${mode}"]`);                  if (matches.length === 0) {                      return;                  }  |