Skip to content

Commit

Permalink
PT-1134: Minor update: turn off autocomplete, keyUp for numeric dictV…
Browse files Browse the repository at this point in the history
  • Loading branch information
akak1977 authored May 13, 2021
1 parent 2c9ff8d commit efa2d55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
<div ng-if="data===selectedItem">
<div class="form-input">
<div class="form-input" ng-if="blade.currentEntity.valueType !== 'Number'">
<input id="dictValue" required ng-model="editValue.value" maxlength="512" ng-blur="selectItem(null)" ng-keyup="inputKeyUp($event)" />
<input id="dictValue" autocomplete="off" required ng-model="editValue.value" maxlength="512" ng-blur="selectItem(null)" ng-keyup="inputKeyUp($event)" />
</div>
<div class="form-input __number" ng-if="blade.currentEntity.valueType === 'Number'">
<input id="dictValue" smart-float required ng-model="editValue.value" maxlength="36" num-type="float" ng-blur="selectItem(null)" />
<input id="dictValue" autocomplete="off" smart-float required ng-model="editValue.value" maxlength="36" num-type="float" ng-blur="selectItem(null)" ng-keyup="inputKeyUp($event)"/>
</div>
<button ng-mousedown="applyValue()" type="button" class="btn">
<i class="btn-ico fas fa-save" ng-class="icon"></i>
Expand Down

0 comments on commit efa2d55

Please sign in to comment.