Added roadheight field with unit dropdowns

This commit is contained in:
Minh Nguyễn
2020-10-12 03:04:37 -07:00
parent d3058983c3
commit 5f58b533ff
6 changed files with 221 additions and 4 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ export function uiFieldText(field, context) {
input = input.enter()
.append('input')
.attr('type', field.type === 'identifier' || field.type === 'roadheight' ? 'text' : field.type)
.attr('type', field.type === 'identifier' ? 'text' : field.type)
.attr('id', field.domId)
.classed(field.type, true)
.call(utilNoAuto)