Skip to content

Commit

Permalink
fix: Fix disappeared button on done
Browse files Browse the repository at this point in the history
  • Loading branch information
deka0106 committed Apr 7, 2021
1 parent dd8b90b commit 51eb42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const setupObserverOnContainer = debounce(async () => {
document.querySelector(".v-virtual-scroll__container")
);
const observer = new MutationObserver(appendTogglButtons);
observer.observe($container, { childList: true });
observer.observe($container, { childList: true, subtree: true });
appendTogglButtons();
});

Expand Down

0 comments on commit 51eb42f

Please sign in to comment.