Can configure network autostart

This commit is contained in:
2023-12-06 19:10:25 +01:00
parent 23f2029deb
commit 8b53875349
7 changed files with 143 additions and 22 deletions

View File

@ -16,7 +16,7 @@ export function TextInput(p: {
maxRows?: number;
type?: React.HTMLInputTypeAttribute;
}): React.ReactElement {
if (((!p.editable && p.value) ?? "") === "") return <></>;
if (!p.editable && (p.value ?? "") === "") return <></>;
let valueError = undefined;
if (p.value && p.value.length > 0) {