page/firstRun: use password input for password
All checks were successful
Build dev / build (push) Successful in 51s

because why password should be shown in plain text??
This commit is contained in:
Wroclaw 2023-11-09 18:48:37 +01:00
parent ebf5690519
commit 1d8220d92c
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ type optionalMap<Optional> = Optional extends true ? undefined : string | number
export type fieldDefinition<Optional extends boolean = boolean> = { export type fieldDefinition<Optional extends boolean = boolean> = {
key: string, key: string,
label?: string, label?: string,
type: "text" | "number", type: "text" | "password" | "number",
optional?: Optional, optional?: Optional,
value?: optionalMap<Optional>, value?: optionalMap<Optional>,
} }

View file

@ -9,7 +9,7 @@ import Alerts, { type AlertData } from '~/components/alerts.vue';
const editorFields: Array<fieldDefinition> = [ const editorFields: Array<fieldDefinition> = [
{ key: "username", type: "text", label: "Username", optional: false }, { key: "username", type: "text", label: "Username", optional: false },
{ key: "password", type: "text", label: "Password", optional: false }, { key: "password", type: "password", label: "Password", optional: false },
{ key: "email", type: "text", label: "email", optional: false }, { key: "email", type: "text", label: "email", optional: false },
]; ];