Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Properly handle integer schema type. Ref issue #288
Browse files Browse the repository at this point in the history
  • Loading branch information
pantsel committed Dec 31, 2018
1 parent abcbd65 commit a5ee37b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assets/js/app/plugins/forms/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@
</div>
</div>

<!-- TYPE: INTEGER -->
<div ng-switch-when="integer">
<input type="number" ng-model="value.value" class="form-control"></input>
</div>

<!-- TYPE: ARRAY -->
<div ng-switch-when="array">
<chips ng-model="value.value">
Expand Down

0 comments on commit a5ee37b

Please sign in to comment.