hide drag-and-drop textarea hints when showing input value as tag

You can't drag and drop or enter text when a text area is displaying its value
as a tag, so we hide the hint to avoid incorrectly suggesting that you can.
This commit is contained in:
Jake McDermott 2019-03-18 08:17:06 -04:00
parent 73c9d1b7a9
commit 4f13592430
No known key found for this signature in database
GPG Key ID: 9A6F084352C3A0B7

View File

@ -2,7 +2,7 @@
<span ng-if="state.required" class="at-InputLabel-required">*</span>
<span class="at-InputLabel-name" >{{::state.label | translate}}</span>
<at-popover state="state"></at-popover>
<span ng-if="state._displayHint" class="at-InputLabel-hint" translate>{{::state._hint}}</span>
<span ng-if="state._displayHint && !state.asTag" class="at-InputLabel-hint" translate>{{::state._hint}}</span>
<div ng-if="state._displayPromptOnLaunch" class="at-InputLabel-checkbox pull-right">
<label class="at-InputLabel-checkboxLabel">
<input type="checkbox"