Adopt shared WebUI layout primitives

This commit is contained in:
2026-08-18 10:42:54 +02:00
parent b9a92c79f9
commit cdbf2bf80b
2 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -15,7 +15,7 @@ import {
Square,
Trash2
} from "lucide-react";
import {
import { FormGrid,
ActionBlockerHint,
AdminPageLayout,
Button,
@@ -869,7 +869,7 @@ export default function ViewsAdminPanel({
</>
}
>
<div className="form-grid">
<FormGrid columns={1} collapseAt="standard" className="">
<FormField
label="i18n:govoplan-views.name"
documentation={VIEWS_FIELD_DOCUMENTATION}
@@ -902,7 +902,7 @@ export default function ViewsAdminPanel({
<p className="muted small-note">
i18n:govoplan-views.first_draft_help
</p>
</div>
</FormGrid>
</Dialog>
<AssignmentDialog
@@ -1244,7 +1244,7 @@ function AssignmentDialog({
</>
}
>
<div className="form-grid two responsive-form-grid">
<FormGrid columns={2} collapseAt="standard" className="">
<FormField
label="i18n:govoplan-views.target_level"
help={editing !== "new" ? "i18n:govoplan-views.assignment_target_immutable" : undefined}
@@ -1405,7 +1405,7 @@ function AssignmentDialog({
help="i18n:govoplan-views.pin_revision_help"
/>
</div>
</div>
</FormGrid>
{draft.mode === "required" && (
<DismissibleAlert
tone={requiredMissing.length ? "danger" : "warning"}