web: fix linting

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-09-29 10:13:27 +02:00
parent 42a7ebf795
commit c0270cc3b3
3 changed files with 28 additions and 7 deletions

View File

@ -331,7 +331,10 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
name="authenticationFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
<option
value=""
?selected=${this.instance?.authenticationFlow === undefined}
>
---------
</option>
${until(
@ -373,7 +376,10 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
name="enrollmentFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
<option
value=""
?selected=${this.instance?.enrollmentFlow === undefined}
>
---------
</option>
${until(

View File

@ -257,7 +257,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
name="authenticationFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
<option
value=""
?selected=${this.instance?.authenticationFlow === undefined}
>
---------
</option>
${until(
@ -299,7 +302,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
name="enrollmentFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
<option
value=""
?selected=${this.instance?.enrollmentFlow === undefined}
>
---------
</option>
${until(

View File

@ -358,7 +358,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
name="preAuthenticationFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.preAuthenticationFlow === undefined}>
<option
value=""
?selected=${this.instance?.preAuthenticationFlow === undefined}
>
---------
</option>
${until(
@ -398,7 +401,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
name="authenticationFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
<option
value=""
?selected=${this.instance?.authenticationFlow === undefined}
>
---------
</option>
${until(
@ -440,7 +446,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
name="enrollmentFlow"
>
<select class="pf-c-form-control">
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
<option
value=""
?selected=${this.instance?.enrollmentFlow === undefined}
>
---------
</option>
${until(