From 6c07a0990cdd0ebc4ab63072c528c987dddcdea0 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 27 May 2015 21:13:23 +0100 Subject: [PATCH] Fix undefined member variable errors. --- resources/report/html/loot-plugin-card.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/report/html/loot-plugin-card.html b/resources/report/html/loot-plugin-card.html index 6ae447c1..1ea0b308 100644 --- a/resources/report/html/loot-plugin-card.html +++ b/resources/report/html/loot-plugin-card.html @@ -267,7 +267,7 @@ loot-clear-metadata this.classList.toggle('highlight', newValue.isConflictFilterChecked); /* Set highlight if the plugin is a search result. */ - this.onSearchResultChange(oldValue.isSearchResult, newValue.isSearchResult); + this.onSearchResultChange(undefined, newValue.isSearchResult); /* Update tooltip positions. */ var tooltips = this.shadowRoot.querySelectorAll('core-tooltip');