ci: fix typos
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
ca2fce8be2
commit
917c4ae835
|
@ -1,3 +1,4 @@
|
|||
keypair
|
||||
keypairs
|
||||
hass
|
||||
warmup
|
||||
|
|
|
@ -73,7 +73,7 @@ ALLOWED_PROMPT_PARAMS = {PROMPT_NONE, PROMPT_CONSENT, PROMPT_LOGIN}
|
|||
@dataclass
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
class OAuthAuthorizationParams:
|
||||
"""Parameteres required to authorize an OAuth Client"""
|
||||
"""Parameters required to authorize an OAuth Client"""
|
||||
|
||||
client_id: str
|
||||
redirect_uri: str
|
||||
|
|
|
@ -58,7 +58,7 @@ export class ConsentStage extends BaseStage<ConsentChallenge, ConsentChallengeRe
|
|||
<p class="pf-u-mb-sm">
|
||||
${t`Application requires following permissions:`}
|
||||
</p>
|
||||
<ul class="pf-c-list" id="permmissions">
|
||||
<ul class="pf-c-list" id="permissions">
|
||||
${this.renderPermissions(this.challenge.permissions)}
|
||||
</ul>
|
||||
`
|
||||
|
@ -76,7 +76,7 @@ export class ConsentStage extends BaseStage<ConsentChallenge, ConsentChallengeRe
|
|||
<p class="pf-u-mb-sm">
|
||||
${t`Application already has access to the following permissions:`}
|
||||
</p>
|
||||
<ul class="pf-c-list" id="permmissions">
|
||||
<ul class="pf-c-list" id="permissions">
|
||||
${this.renderPermissions(this.challenge.permissions)}
|
||||
</ul>
|
||||
`
|
||||
|
@ -88,7 +88,7 @@ export class ConsentStage extends BaseStage<ConsentChallenge, ConsentChallengeRe
|
|||
<strong class="pf-u-mb-sm">
|
||||
${t`Application requires following new permissions:`}
|
||||
</strong>
|
||||
<ul class="pf-c-list" id="permmissions">
|
||||
<ul class="pf-c-list" id="permissions">
|
||||
${this.renderPermissions(this.challenge.additionalPermissions)}
|
||||
</ul>
|
||||
`
|
||||
|
|
Reference in New Issue