diff --git a/resources/report/html/loot-plugin-card.html b/resources/report/html/loot-plugin-card.html index 301156ff..3494e297 100644 --- a/resources/report/html/loot-plugin-card.html +++ b/resources/report/html/loot-plugin-card.html @@ -19,6 +19,7 @@ loot-clear-metadata + @@ -143,7 +144,7 @@ loot-clear-metadata
- + @@ -223,6 +224,9 @@ loot-clear-metadata this.onCrcChange(); this.onTagsChange(); this.onMessagesChange(); + + /* Also set highlight if the conflict filter is active. */ + this.classList.toggle('highlight', this.data.isConflictFilterChecked); } }, diff --git a/resources/report/js/plugin.js b/resources/report/js/plugin.js index 609affc6..b484351a 100644 --- a/resources/report/js/plugin.js +++ b/resources/report/js/plugin.js @@ -43,6 +43,7 @@ function Plugin(obj) { this.id = this.name.replace(/\s+/g, ''); this.isMenuOpen = false; this.isEditorOpen = false; + this.isConflictFilterChecked = false; /* Converts between the LOOT metadata object for tags, and their editor row representation. */