Skip to content

Commit

Permalink
elastic#6537 adjust check
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelhallmann53 committed Oct 8, 2016
1 parent bdf66fb commit a4bf798
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/public/stringify/editors/color.html
Expand Up @@ -4,7 +4,7 @@
<button ng-if="editor.formatParams.colors.length > 1" aria-label="Remove Color" ng-click="removeColor($index)" tooltip="Remove Color" tooltip-append-to-body="true" type="button" class="btn btn-xs btn-danger editor-color-remove">
<i aria-hidden="true" class="fa fa-times"></i>
</button>
<div class="form-group" ng-if="editor.field.type === 'number'">
<div class="form-group" ng-if="'number' === editor.field.type ">
<label>Range
<small>
(min:max)
Expand All @@ -14,7 +14,7 @@
ng-model="color.range"
class="form-control">
</div>
<div class="form-group" ng-if="editor.field.type === 'string'">
<div class="form-group" ng-if="'string' === editor.field.type">
<label>Regex</label>
<input
ng-model="color.regex"
Expand Down

0 comments on commit a4bf798

Please sign in to comment.