Skip to content

Commit

Permalink
Merge pull request #171 from silinternational/develop
Browse files Browse the repository at this point in the history
Release 5.3.9
  • Loading branch information
hobbitronics committed Aug 5, 2024
2 parents 0f909e2 + 3f13b92 commit a12e050
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
16 changes: 12 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@sentry/vue": "^7.113.0",
"@simplewebauthn/browser": "^4.1.0",
"@simplewebauthn/browser": "^9",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
Expand Down
4 changes: 2 additions & 2 deletions src/2sv/key/Insert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@

<script>
import ProfileWizard from '@/profile/ProfileWizard'
import { browserSupportsWebauthn } from '@simplewebauthn/browser'
import { browserSupportsWebAuthn } from '@simplewebauthn/browser'
import { newKeyName, mfa } from '@/global/mfa'
export default {
components: {
ProfileWizard,
},
data: () => ({
isSupported: browserSupportsWebauthn(),
isSupported: browserSupportsWebAuthn(),
showLabelInput: false,
input: '',
newKeyName,
Expand Down
4 changes: 2 additions & 2 deletions src/2sv/key/Touch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<script>
import ProfileWizard from '@/profile/ProfileWizard'
import { browserSupportsWebauthn, startRegistration } from '@simplewebauthn/browser'
import { browserSupportsWebAuthn, startRegistration } from '@simplewebauthn/browser'
import { add, verifyWebauthn, newKeyName } from '@/global/mfa'
let absTimeout
Expand All @@ -67,7 +67,7 @@ export default {
newSecurityKey: {},
touched: false,
error: false,
isSupported: browserSupportsWebauthn(),
isSupported: browserSupportsWebAuthn(),
}),
async created() {
this.create()
Expand Down

0 comments on commit a12e050

Please sign in to comment.