We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a26ef commit e8e2c24Copy full SHA for e8e2c24
stories/tile-manager.stories.ts
@@ -835,8 +835,8 @@ function handleMaximizeClick(event: Event) {
835
currentBtn.setAttribute('aria-label', 'expand');
836
837
const additionalButtons =
838
- actionsSlot.querySelectorAll('.additional-action');
839
- additionalButtons.forEach((btn) => btn.remove());
+ actionsSlot.parentElement?.querySelectorAll('.additional-action');
+ additionalButtons?.forEach((btn) => btn.remove());
840
}
841
842
0 commit comments