Skip to content

Commit

Permalink
fix(projects): Enable phrase search for group and tag in projects
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Maier <thomas.maier@evosoft.com>
  • Loading branch information
maierthomas committed Aug 17, 2018
1 parent d65e7f6 commit 74c6512
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,8 @@ private static String formatSubquery(Set<String> filterSet, final String fieldNa
return fieldName + ":\"" + (enumByString(input, ProjectState.class).toString()) + "\"";
} else if (fieldName.equals("projectType")) {
return fieldName + ":\"" + (enumByString(input, ProjectType.class).toString()) + "\"";
} else if (fieldName.equals("businessUnit") || fieldName.equals("tag")) {
return fieldName + ":\"" + input + "\"";
} else {
return fieldName + ":" + input;
}
Expand Down

0 comments on commit 74c6512

Please sign in to comment.