You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If multiple tabs/windows are open on www.deviantart.com, using the "Create Filters from this Deviation" context menu option on any tab/window shows the modal on all of the open tabs/windows.
This is caused by using the SendMessageToAllTabs helper function in the onClicked event handler for that menu item.
It appears to be a very simple fix: just change this logic to instead use browser.tabs.sendMessage() and pass the tab.id that is sent to the event handler.
The text was updated successfully, but these errors were encountered:
If multiple tabs/windows are open on www.deviantart.com, using the "Create Filters from this Deviation" context menu option on any tab/window shows the modal on all of the open tabs/windows.
This is caused by using the
SendMessageToAllTabs
helper function in theonClicked
event handler for that menu item.It appears to be a very simple fix: just change this logic to instead use
browser.tabs.sendMessage()
and pass thetab.id
that is sent to the event handler.The text was updated successfully, but these errors were encountered: