Refactor switch statement

This commit is contained in:
Oliver 2021-06-29 09:28:00 +10:00
parent 0037056ee8
commit 374344d0e2

View File

@ -913,20 +913,12 @@ function constructInput(name, parameters, options) {
func = constructCheckboxInput; func = constructCheckboxInput;
break; break;
case 'string': case 'string':
func = constructTextInput;
break;
case 'url': case 'url':
func = constructTextInput;
break;
case 'email': case 'email':
func = constructTextInput; func = constructTextInput;
break; break;
case 'integer': case 'integer':
func = constructNumberInput;
break;
case 'float': case 'float':
func = constructNumberInput;
break;
case 'decimal': case 'decimal':
func = constructNumberInput; func = constructNumberInput;
break; break;