admin page updates

This commit is contained in:
2026-02-13 20:51:39 +11:00
parent f51053212e
commit 295e373f37
34 changed files with 1737 additions and 164 deletions

View File

@@ -6,7 +6,7 @@ import (
)
type IntField struct {
Field
FieldBase
Value int
}
@@ -24,8 +24,8 @@ func newIntField(key string, g Getter) *IntField {
}
}
return &IntField{
Value: val,
Field: newField(key, g),
Value: val,
FieldBase: newField(key, g),
}
}