Skip to content

Commit

Permalink
Merge pull request #1037 from dheerajrav/master
Browse files Browse the repository at this point in the history
multifilter bug fix
  • Loading branch information
arikfr committed May 5, 2016
2 parents 8b5dc8e + 83a03a2 commit fec0d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rd_ui/app/scripts/services/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
var typeSplit;
if (column.indexOf("::") != -1) {
typeSplit = "::";
} else if (column.indexOf("__" != -1)) {
} else if (column.indexOf("__") != -1) {
typeSplit = "__";
} else {
return column;
Expand Down

0 comments on commit fec0d5f

Please sign in to comment.