Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Nov 8, 2023
1 parent f61cc5b commit 4ac6275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion step-web/src/main/webapp/js/search_selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ step.searchSelect = {
for (var i = 0; i < step.searchSelect.numOfSearchTypesToDisplay; i ++) {
var srchCode = this.searchTypeCode[i];
html += '<tr style="height:40px;" class="select2-result select2-result-selectable select-' + srchCode + '">' +
'<td onmouseover="javascript:$(\'#quickLexicon\').remove()" class="search-type-column select2-result select2-result-selectable select-' + srchCode + '" title="' +
'<td onmousemove="javascript:$(\'#quickLexicon\').remove()" class="search-type-column select2-result select2-result-selectable select-' + srchCode + '" title="' +
__s['search_type_title_' + srchCode] + '" style="font-size:12px;text-align:left;' + (step.state.isLtR()? '">': 'text-align: right;">') + __s['search_type_desc_' + srchCode] + ':</td>' +
'<td onmouseout="javascript:$(\'#quickLexicon\').remove()" style="text-align:left"><span id="searchResults' + srchCode + '"></span></td></tr>';
}
Expand Down

0 comments on commit 4ac6275

Please sign in to comment.