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"
|
name="authenticationFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.authenticationFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
@ -373,7 +376,10 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
name="enrollmentFlow"
|
name="enrollmentFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.enrollmentFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
|
|
@ -257,7 +257,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
|
||||||
name="authenticationFlow"
|
name="authenticationFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.authenticationFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
@ -299,7 +302,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
|
||||||
name="enrollmentFlow"
|
name="enrollmentFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.enrollmentFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
|
|
@ -358,7 +358,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
name="preAuthenticationFlow"
|
name="preAuthenticationFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.preAuthenticationFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.preAuthenticationFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
@ -398,7 +401,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
name="authenticationFlow"
|
name="authenticationFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.authenticationFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.authenticationFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
@ -440,7 +446,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
name="enrollmentFlow"
|
name="enrollmentFlow"
|
||||||
>
|
>
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
<option value="" ?selected=${this.instance?.enrollmentFlow === undefined}>
|
<option
|
||||||
|
value=""
|
||||||
|
?selected=${this.instance?.enrollmentFlow === undefined}
|
||||||
|
>
|
||||||
---------
|
---------
|
||||||
</option>
|
</option>
|
||||||
${until(
|
${until(
|
||||||
|
|
Reference in New Issue