web: fix lint error
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
d96c96006f
commit
5f28c7ace7
|
@ -90,7 +90,7 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
value="${first(
|
value="${first(
|
||||||
this.instance?.authorizationUrl,
|
this.instance?.authorizationUrl,
|
||||||
this.providerType.authorizationUrl,
|
this.providerType.authorizationUrl,
|
||||||
""
|
"",
|
||||||
)}"
|
)}"
|
||||||
class="pf-c-form-control"
|
class="pf-c-form-control"
|
||||||
required
|
required
|
||||||
|
@ -109,7 +109,7 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
value="${first(
|
value="${first(
|
||||||
this.instance?.accessTokenUrl,
|
this.instance?.accessTokenUrl,
|
||||||
this.providerType.accessTokenUrl,
|
this.providerType.accessTokenUrl,
|
||||||
""
|
"",
|
||||||
)}"
|
)}"
|
||||||
class="pf-c-form-control"
|
class="pf-c-form-control"
|
||||||
required
|
required
|
||||||
|
@ -125,7 +125,11 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
value="${first(this.instance?.profileUrl, this.providerType.profileUrl, "")}"
|
value="${first(
|
||||||
|
this.instance?.profileUrl,
|
||||||
|
this.providerType.profileUrl,
|
||||||
|
"",
|
||||||
|
)}"
|
||||||
class="pf-c-form-control"
|
class="pf-c-form-control"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
|
|
Reference in New Issue