Changed the mapping of cell from 'numeric' to 'integer' for integer control as numeric cell has been removed from the code. Fixes #2631

This commit is contained in:
Akshay Joshi
2017-08-07 14:02:59 +05:30
parent 801a05891e
commit e418cb8387
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@
});
var controlMapper = Backform.controlMapper = {
'int': ['uneditable-input', 'numeric', 'numeric'],
'int': ['uneditable-input', 'numeric', 'integer'],
'text': ['uneditable-input', 'input', 'string'],
'numeric': ['uneditable-input', 'numeric', 'numeric'],
'date': 'datepicker',