Skip to content

Commit

Permalink
Capitalizing first Category later after bookmark searching
Browse files Browse the repository at this point in the history
  • Loading branch information
k-joseph committed Jun 3, 2015
1 parent dc02d1b commit 91abe07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omod/src/main/webapp/fragments/searchSavingSection.gsp
Expand Up @@ -439,7 +439,7 @@
jq("#favorite-search-record").addClass("icon-star");
if(cats.length !== 0) {
if(cats[0] !== "") {
jq("#category-filter_method").text(cats[0] + "...");
jq("#category-filter_method").text(capitalizeFirstLetter(cats[0]) + "...");
}
}
},
Expand Down

0 comments on commit 91abe07

Please sign in to comment.