Add "key=value" placeholder to text tag editor textarea

This commit is contained in:
Quincy Morgan
2020-01-18 13:36:36 -05:00
parent 874acf8ccc
commit 6f2938b35e
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -139,6 +139,7 @@ export function uiRawTagEditor(context) {
.append('textarea')
.attr('class', 'tag-text' + (_tagView !== 'text' ? ' hide' : ''))
.call(utilNoAuto)
.attr('placeholder', t('inspector.key_value'))
.attr('spellcheck', 'false')
.merge(textarea);