diff --git a/src/gui/html/js/events.js b/src/gui/html/js/events.js index 13e01d6e..f3ba0933 100644 --- a/src/gui/html/js/events.js +++ b/src/gui/html/js/events.js @@ -422,6 +422,12 @@ function onConflictsFilter(evt) { } }); loot.filters.apply(loot.game.plugins); + + /* Scroll to the target plugin */ + const list = document.getElementById('pluginCardList'); + const index = list.items.findIndex(item => item.name === evt.target.value); + list.scrollToIndex(index); + loot.Dialog.closeProgress(); }).catch(loot.handlePromiseError); } else {