Skip to content

Commit 5287d68

Browse files
jwaspinDevon Anderson
and
Devon Anderson
authored
Add No Description Text (#578)
In the thesaurus dropdown, the tooltip needs to be displayed for all options. If no description is available, this change will add that text. Co-authored-by: Devon Anderson <devon_anderson@fws.gov>
1 parent 5b30412 commit 5287d68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pods/components/input/md-select-thesaurus/component.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default Component.extend({
8484
return EmberObject.create({
8585
id: k.citation.identifier[0].identifier,
8686
label: k.label || k.citation.title || 'Keywords',
87-
tooltipText: k.citation.description || null,
87+
tooltipText: k.citation.description || 'No description available.',
8888
});
8989
})
9090
.sort((a, b) => {

0 commit comments

Comments
 (0)