diff --git a/ui/app/models/mfa-method.js b/ui/app/models/mfa-method.js index 8f0e983f1b..c6be20108d 100644 --- a/ui/app/models/mfa-method.js +++ b/ui/app/models/mfa-method.js @@ -145,14 +145,14 @@ export default class MfaMethod extends Model { @attr('number', { label: 'Digits', editType: 'radio', - possibleValues: ['6', '8'], + possibleValues: [6, 8], subText: 'The number digits in the generated TOTP code.', }) digits; @attr('number', { label: 'Skew', editType: 'radio', - possibleValues: ['0', '1'], + possibleValues: [0, 1], subText: 'The number of delay periods allowed when validating a TOTP token.', }) skew; diff --git a/ui/lib/core/addon/components/form-field.hbs b/ui/lib/core/addon/components/form-field.hbs index b1dbc4d893..b1b97bc661 100644 --- a/ui/lib/core/addon/components/form-field.hbs +++ b/ui/lib/core/addon/components/form-field.hbs @@ -27,12 +27,13 @@ -