Skip to content

Commit 558ab2f

Browse files
committed
Fix bug on removing null item from filter summary
1 parent 5068896 commit 558ab2f

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

Build/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
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("3.3.0")]
19-
[assembly: AssemblyFileVersion("3.3.0")]
18+
[assembly: AssemblyVersion("3.3.1")]
19+
[assembly: AssemblyFileVersion("3.3.1")]
2020
//[assembly: AssemblyInformationalVersion("2.5-filters")]

Build/Griddly.Core.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<id>Griddly.Core</id>
66
<version></version>
77
<authors>Chris Hynes, Joel Potter</authors>
8-
<!--<licenseUrl></licenseUrl>-->
98
<projectUrl>https://github.com/programcsharp/griddly</projectUrl>
109
<iconUrl>https://raw.githubusercontent.com/programcsharp/griddly/master/Griddly/Content/griddly-32.png</iconUrl>
1110
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<license type="expression">MIT</license>
1212
<description>Pagable sortable MVC enabled grid (core files only)</description>
1313
<!--<summary></summary>-->
1414
<language>en-US</language>

Build/Griddly.nuspec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
<id>Griddly</id>
66
<version></version>
77
<authors>Chris Hynes, Joel Potter</authors>
8-
<!--<licenseUrl></licenseUrl>-->
98
<projectUrl>http://griddly.com</projectUrl>
109
<iconUrl>https://raw.githubusercontent.com/programcsharp/griddly/master/Griddly/Content/griddly-32.png</iconUrl>
1110
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<!--<license type="expression">MIT</license>-->
11+
<license type="expression">MIT</license>
1312
<description>Pagable, sortable, MVC enabled grid</description>
14-
<!--<summary></summary>-->
1513
<language>en-US</language>
1614
<dependencies>
1715
<group>

Griddly/Scripts/griddly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@
362362
}
363363
else
364364
{
365-
if (typeof value === typeof undefined && input.is("[multiple]"))
365+
if ((value === null || typeof value === typeof undefined) && input.is("[multiple]"))
366366
input.find("option:selected").prop("selected", false);
367367
else
368368
input.val([].concat(value));

0 commit comments

Comments
 (0)