Skip to content

Commit c3af5fb

Browse files
committed
Fix conditional
1 parent def744e commit c3af5fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Build/CommonAssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
//
1616
// You can specify all the values or you can default the Revision and Build Numbers
1717
// by using the '*' as shown below:
18-
[assembly: AssemblyVersion("1.5.18")]
19-
[assembly: AssemblyFileVersion("1.5.18")]
18+
[assembly: AssemblyVersion("1.5.19")]
19+
[assembly: AssemblyFileVersion("1.5.19")]
2020
//[assembly: AssemblyInformationalVersion("1.4.5-editlyalpha2")]

Griddly/Scripts/griddly.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@
587587
else if (valEnd != null)
588588
display = (dataType == "Date" ? "Before " : "<= ") + this.getFormattedValue(valEnd, dataType);
589589

590-
if (display == null || (dataType == "String" && display.indexOf("null") != -1))
590+
if (display == null || (dataType != "String" && display.indexOf("null") != -1))
591591
{
592592
display = "All " + filter.data("filter-name-plural");
593593

0 commit comments

Comments
 (0)