This commit is contained in:
2026-05-10 08:48:42 +02:00
parent cc9d3220c9
commit 79df1aa493
15 changed files with 3523 additions and 892 deletions

View File

@@ -104,6 +104,7 @@ export function JailSectionPanel({ jailName, section, onChange }: JailSectionPan
value={section.bantime !== null ? String(section.bantime) : ""}
size="small"
type="number"
aria-label="Ban Time (s)"
placeholder="e.g. 3600"
onChange={(_e, d) => {
const n = parseInt(d.value, 10);

View File

@@ -346,6 +346,7 @@ function JailConfigDetail({
type="number"
value={banTime}
readOnly={readOnly}
aria-label="Ban Time (s)"
onChange={(_e, d) => {
setBanTime(d.value);
}}