Use newlines instead of semicolons to separate mutliselection tag values in tooltips (re: #7306)

This commit is contained in:
Quincy Morgan
2020-01-31 10:49:31 -05:00
parent 512d8974a6
commit b3262a71dc
10 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ export function uiFieldText(field, context) {
var isMixed = Array.isArray(tags[field.key]);
utilGetSetValue(input, !isMixed && tags[field.key] ? tags[field.key] : '')
.attr('title', isMixed ? tags[field.key].filter(Boolean).join('; ') : undefined)
.attr('title', isMixed ? tags[field.key].filter(Boolean).join('\n') : undefined)
.attr('placeholder', isMixed ? t('inspector.multiple_values') : (field.placeholder() || t('inspector.unknown')))
.classed('mixed', isMixed);