Skip to content

Commit 3312d53

Browse files
ahornaceVladimir Kotal
authored andcommitted
Fix suggester display of hiragana terms
fixes #3603
1 parent 0dc20a0 commit 3312d53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

opengrok-web/src/main/java/org/opengrok/web/Scripts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public String toHtml() {
114114
putFromWebJar("jquery-tablesorter", "jquery.tablesorter.min.js", 12);
115115
putjs("tablesorter-parsers", "js/tablesorter-parsers-0.0.3", 13, true);
116116
putjs("searchable-option-list", "js/searchable-option-list-2.0.14", 14);
117-
putjs("utils", "js/utils-0.0.41", 15, true);
117+
putjs("utils", "js/utils-0.0.42", 15, true);
118118
putjs("repos", "js/repos-0.0.3", 20, true);
119119
putjs("diff", "js/diff-0.0.5", 20, true);
120120
putjs("jquery-caret", "js/jquery.caret-1.5.2", 25);

opengrok-web/src/main/webapp/js/utils-0.0.41.js renamed to opengrok-web/src/main/webapp/js/utils-0.0.42.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ function getSuggestionListItem(itemData, config) {
19631963

19641964
$("<span>", {
19651965
text: itemData.phrase,
1966-
style: "float: left; padding-left: 5px;"
1966+
style: "float: left; padding-left: 5px; max-height: 20px;"
19671967
}).appendTo(listItemChild);
19681968

19691969
let projectInfoText = "";

0 commit comments

Comments
 (0)