Skip to content

Commit

Permalink
Merge pull request #1221 from hicallmeal/patch-1
Browse files Browse the repository at this point in the history
Implement work-around/fix for incorrect render of manually added HOTP tokens
  • Loading branch information
mymindstorm authored Jul 9, 2024
2 parents 320a999 + c4cd375 commit 66197dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Popup/AddAccountPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<option :value="OTPAlgorithm.GOST3411_2012_256">GOST 34.11 256</option>
<option :value="OTPAlgorithm.GOST3411_2012_512">GOST 34.11 512</option>
</a-select-input>
<a-select-input :label="i18n.type" v-model="newAccount.type">
<a-select-input :label="i18n.type" v-model.number="newAccount.type">
<option :value="OTPType.totp">{{ i18n.based_on_time }}</option>
<option :value="OTPType.hotp">{{ i18n.based_on_counter }}</option>
<option :value="OTPType.battle">Battle.net</option>
Expand Down

0 comments on commit 66197dc

Please sign in to comment.