e.stopPropagation()}>
${t("views_dialog_title", L)}
${t("views_dialog_hint", L)}
${this._error ? html`
${this._error}
` : nothing}
(this._name = (e.target as HTMLInputElement).value)}
@keydown=${(e: KeyboardEvent) => {
if (e.key === "Enter") this._save();
}}
/>
${t("views_save_current", L)}
${this._views.length === 0
? html`
${t("views_none_yet", L)}
`
: html`
${this._views.map(
(v) => html`
${v.name}
this._delete(v.id)}
>
`,
)}
`}
${t("close", L)}