Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2148 from montegoulding/bugfix-22847
Browse files Browse the repository at this point in the history
[[ Bug 22847 ]] Improve display of enum values in dictionary
  • Loading branch information
livecodepanos committed Nov 3, 2020
2 parents 98e66ef + 1812319 commit dcae197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/html_viewer/js/dictionary_functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@
tHTML += '<li><span class="lcdoc_parameterValue">';
tHTML += value.value + '</span>';
if (nonEmptyElement(value, "description"))
tHTML += ' -' + value.description;
tHTML += ' - ' + value.description;
tHTML += '</li>';
});
tHTML += "</ul>";
Expand Down
1 change: 1 addition & 0 deletions notes/bugfix-22847.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Improve display of enum values in dictionary

0 comments on commit dcae197

Please sign in to comment.