remove dangling autocompletes after closing the tab

This commit is contained in:
zadam 2020-05-04 21:58:40 +02:00
parent 4c6e9480e4
commit cafcb67a8a

View file

@ -265,6 +265,9 @@ export default class TabManager extends Component {
this.children = this.children.filter(tc => tc.tabId !== tabId); this.children = this.children.filter(tc => tc.tabId !== tabId);
// remove dangling autocompletes after closing the tab
$(".algolia-autocomplete").remove();
this.triggerEvent('tabRemoved', {tabId}); this.triggerEvent('tabRemoved', {tabId});
this.tabsUpdate.scheduleUpdate(); this.tabsUpdate.scheduleUpdate();