Skip to content

Commit

Permalink
Fix authentication typo (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
richfab authored Nov 8, 2023
1 parent 99f7a52 commit 56cfc49
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions website/src/pages/Validator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ function updateURL() {
>
</b-form-group>
</b-tab>
<b-tab title="Authentification">
<b-tab title="Authentication">
<b-form-group
id="input-group-auth"
label="Authentification"
label="Authentication"
label-for="input-auth"
class="mb-3"
>
Expand All @@ -166,7 +166,7 @@ function updateURL() {

<b-form-group
id="input-group-basic_auth"
label="Authentification"
label="Authentication"
label-for="input-basic_auth"
v-if="state.options.auth.type === 'basic_auth'"
>
Expand All @@ -190,7 +190,7 @@ function updateURL() {

<b-form-group
id="input-group-bearer_token"
label="Authentification"
label="Authentication"
label-for="input-bearer_token"
v-if="state.options.auth.type === 'bearer_token'"
>
Expand All @@ -203,7 +203,7 @@ function updateURL() {

<b-form-group
id="input-group-headers"
label="Authentification"
label="Authentication"
label-for="input-headers"
v-if="state.options.auth.type === 'headers'"
>
Expand All @@ -227,7 +227,7 @@ function updateURL() {

<b-form-group
id="input-group-oauth_client_credentials_grant"
label="Authentification"
label="Authentication"
label-for="input-bearer_token"
v-if="state.options.auth.type === 'oauth_client_credentials_grant'"
>
Expand Down

0 comments on commit 56cfc49

Please sign in to comment.