From dc9c8f97d89ed3b2c74e98c886fa6edd74d8bec9 Mon Sep 17 00:00:00 2001 From: wes Date: Sun, 4 Jun 2017 17:55:18 -0400 Subject: [PATCH] fix bug with "No Results" --- src/scripts/results.tag | 3 +++ src/scripts/row.tag | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/scripts/results.tag b/src/scripts/results.tag index 035fcc5..9e0cd62 100644 --- a/src/scripts/results.tag +++ b/src/scripts/results.tag @@ -32,6 +32,9 @@ self.options.resultsEv.on("newResults", if (self.rows.length == 0) { self.noResults = true; } + else { + self.noResults = false; + } self.update(); }); diff --git a/src/scripts/row.tag b/src/scripts/row.tag index 827e28c..bc28996 100644 --- a/src/scripts/row.tag +++ b/src/scripts/row.tag @@ -25,4 +25,3 @@ this.classrow = opts.classrow -