fix(ssr): fix Client Review (requires-feedback) status in bulk-code dialog
The bulk-code "Requires Feedback" option submitted "requires_feedback" (underscore), which decoded to an enum keyword not present in the schema (idents use a hyphen), so selecting it failed validation. Use the hyphenated value and relabel the option, the reconciliation report header to "Client Review" to unify with the sidebar terminology. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
(com/data-grid-header {} "Synced count")
|
(com/data-grid-header {} "Synced count")
|
||||||
(com/data-grid-header {} "Approved transactions")
|
(com/data-grid-header {} "Approved transactions")
|
||||||
(com/data-grid-header {} "Unapproved transactions")
|
(com/data-grid-header {} "Unapproved transactions")
|
||||||
(com/data-grid-header {} "Requires feedback transactions")
|
(com/data-grid-header {} "Client Review transactions")
|
||||||
(com/data-grid-header {} "Missing transactions")])
|
(com/data-grid-header {} "Missing transactions")])
|
||||||
#_#_:thead-params {:class "sticky top-0 z-50"}}
|
#_#_:thead-params {:class "sticky top-0 z-50"}}
|
||||||
(for [row report]
|
(for [row report]
|
||||||
|
|||||||
@@ -206,7 +206,7 @@
|
|||||||
["approved" "Approved"]
|
["approved" "Approved"]
|
||||||
["unapproved" "Unapproved"]
|
["unapproved" "Unapproved"]
|
||||||
["suppressed" "Suppressed"]
|
["suppressed" "Suppressed"]
|
||||||
["requires_feedback" "Requires Feedback"]]})))]
|
["requires-feedback" "Client Review"]]})))]
|
||||||
|
|
||||||
;; Accounts section
|
;; Accounts section
|
||||||
[:div.col-span-2.pt-4
|
[:div.col-span-2.pt-4
|
||||||
|
|||||||
Reference in New Issue
Block a user