Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
BugFix: Selected tags now load correctly in Filter Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Wood committed Sep 17, 2019
1 parent afed774 commit e4750da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UI/ExplorerFilterTagsSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void DisplayInArrayFilterTags(RequestFilter requestFilter)
foreach(IRequestFieldFilter fieldFilter in filters)
{
if(fieldFilter != null
&& fieldFilter.filterMethod == FieldFilterMethod.InCollection)
&& fieldFilter.filterMethod == FieldFilterMethod.EquivalentCollection)
{
this.UpdateSelectedTagsDisplay(fieldFilter.filterValue as IEnumerable<string>);
return;
Expand Down

0 comments on commit e4750da

Please sign in to comment.