Skip to content

Commit

Permalink
remove jwt and webauthn
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Sep 5, 2023
1 parent b5d0ee6 commit 2c61aac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/vue-example/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<option :key="login" v-for="login in Object.values(UX_MODE)" :value="login">{{ login }}</option>
</select>
<select v-model="selectedLoginProvider" class="select">
<option :key="login" v-for="login in Object.values(LOGIN_PROVIDER)" :value="login">{{ login }}</option>
<option :key="login" v-for="login in Object.values(LOGIN_PROVIDER).filter(x => x !== "jwt" && x !== "webauthn")" :value="login">{{ login }}</option>

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Parsing error: Unexpected end of expression

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Parsing error: missing-whitespace-between-attributes

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Attribute name jwt" is not valid

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Parsing error: unexpected-character-in-attribute-name

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Attribute name && is not valid

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Attribute name ! is not valid

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Parsing error: unexpected-character-in-unquoted-attribute-value

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Parsing error: unexpected-character-in-attribute-name

Check failure on line 20 in examples/vue-example/src/App.vue

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Attribute name "webauthn")" is not valid
</select>
<input
v-model="login_hint"
Expand Down

0 comments on commit 2c61aac

Please sign in to comment.