From a3b985df1d2108237d28809dc0c3a330b883271c Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sat, 15 Nov 2014 13:51:11 +0000 Subject: [PATCH] Fixed uncalculated CRCs displayed in editor. --- resources/report/html/loot-plugin-editor.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/report/html/loot-plugin-editor.html b/resources/report/html/loot-plugin-editor.html index be6e7849..89a9904d 100644 --- a/resources/report/html/loot-plugin-editor.html +++ b/resources/report/html/loot-plugin-editor.html @@ -265,6 +265,9 @@ loot-editor-close if (newValue) { /* Set the new editor data. */ this.setEditorData(newValue); + this.shadowRoot.getElementsByClassName('crc')[0].textContent = this.data.getCrcString(); + } else { + this.shadowRoot.getElementsByClassName('crc')[0].textContent = ''; } },