web: fix linting error
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
2a5926608f
commit
8ecacb319c
|
@ -40,7 +40,7 @@ export class AutosubmitStage extends BaseStage {
|
||||||
<div class="pf-c-login__main-body">
|
<div class="pf-c-login__main-body">
|
||||||
<form class="pf-c-form" action="${this.challenge.url}" method="POST">
|
<form class="pf-c-form" action="${this.challenge.url}" method="POST">
|
||||||
${Object.entries(this.challenge.attrs).map(([ key, value ]) => {
|
${Object.entries(this.challenge.attrs).map(([ key, value ]) => {
|
||||||
return html`<input type="hidden" name="${key}" value="${value}">`;
|
return html`<input type="hidden" .name="${key}" .value="${value}">`;
|
||||||
})}
|
})}
|
||||||
<ak-empty-state
|
<ak-empty-state
|
||||||
?loading="${true}">
|
?loading="${true}">
|
||||||
|
|
Reference in New Issue