Skip to content

Commit 1e8999f

Browse files
committed
Fixed issue with filter list binding
1 parent fd1d061 commit 1e8999f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Build/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
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.0.46.0")]
19-
[assembly: AssemblyFileVersion("1.0.46.0")]
18+
[assembly: AssemblyVersion("1.0.47.0")]
19+
[assembly: AssemblyFileVersion("1.0.47.0")]

Griddly.Mvc/GriddlyFilter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void SetSelectedItems(object value)
115115
{
116116
IEnumerable defaultValues = value as IEnumerable;
117117

118-
if (value == null || value is string)
118+
if (defaultValues == null || value is string)
119119
{
120120
string valueString = value.ToString();
121121

0 commit comments

Comments
 (0)