input type change

input type change text to number for instance count
This commit is contained in:
Nitin Goyal
2017-12-19 04:19:50 +05:30
committed by GitHub
parent 3c385be6a4
commit 2c013433e3
+1 -1
View File
@@ -433,7 +433,7 @@
<div class="form-group col-xs-6">
<div class="input-group" uib-tooltip="{{app.hasPersistentData?'Cannot change instances of an app with persistent data':'Number of running instances of this app'}}">
<span class="input-group-addon">Instance Count:</span>
<input type="text" class="form-control" ng-disabled="app.hasPersistentData" ng-model="app.instanceCount">
<input type="number" class="form-control" ng-disabled="app.hasPersistentData" ng-model="app.instanceCount">
</div>
</div>