feat(precedent-library): add district and chair_name to edit form
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 3m11s

Fields existed in DB and Precedent type but were missing from:
- PrecedentUpdateRequest (backend model)
- update_case_law allowed set (db layer)
- PrecedentPatch (frontend type)
- precedent-edit-sheet form state, inputs, and patch payload

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-19 12:16:43 +00:00
parent 1da2a9a2cb
commit 1496e520fd
4 changed files with 25 additions and 3 deletions

View File

@@ -4287,6 +4287,8 @@ class PrecedentUpdateRequest(BaseModel):
source_type: str | None = None
precedent_level: str | None = None
is_binding: bool | None = None
district: str | None = None
chair_name: str | None = None
class HalachaUpdateRequest(BaseModel):