Skip to content

Commit 7b9aa55

Browse files
committed
gender render fix
1 parent fa27eac commit 7b9aa55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/helpers/is-input-field.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { helper } from '@ember/component/helper';
22

3-
export const isInputField = params => params[0] === 'text' || params[0] === 'number' || params[0] === 'email';
3+
export const isInputField = params => params[0] === 'text' || params[0] === 'number' || params[0] === 'email' || params[0] === 'select';
44

55
export default helper(isInputField);

0 commit comments

Comments
 (0)