feat(config): render quota/backfill/shorts/batch groups on the Configuration page

Add the four new groups to the page's group order and EN/HU/DE labels + field
hints for the 8 newly DB-overridable settings. The page is registry-driven, so
this is purely presentational (group order + i18n).
This commit is contained in:
npeter83 2026-06-19 13:07:55 +02:00
parent 7081b57150
commit 50d776cdb7
4 changed files with 43 additions and 7 deletions

View file

@ -11,7 +11,7 @@ import Tooltip from "./Tooltip";
// applied together via one Save/Discard bar (consistent with the Settings page); nothing hits
// the server until Save. Group order is fixed where known so logically related settings (e.g.
// Email/SMTP) stay together.
const GROUP_ORDER = ["email"];
const GROUP_ORDER = ["email", "quota", "backfill", "shorts", "batch"];
type SaveState = "idle" | "saving" | "saved" | "error";
export default function ConfigPanel() {