web: fix linting
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
42a7ebf795
commit
c0270cc3b3
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
Reference in New Issue