web: fix lint error

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-09-14 14:44:57 +02:00
parent d96c96006f
commit 5f28c7ace7
1 changed files with 7 additions and 3 deletions

View File

@ -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
/> />