fix(ssr): hide client column in edited transaction row for single client

The save-handler re-rendered the edited row via row* without passing
:request, so the Client column's :hide? predicate received a nil request
and never hid the column. Pass :request request like table* does.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-17 13:40:50 -07:00
parent 4aed27b204
commit 8ca5e75c4d

View File

@@ -1296,7 +1296,7 @@
(alog/error ::cant-save-solr :error e))) (alog/error ::cant-save-solr :error e)))
(html-response (html-response
(row* (:identity request) (d-transactions/get-by-id tx-id) {:flash? true}) (row* (:identity request) (d-transactions/get-by-id tx-id) {:flash? true :request request})
:headers {"hx-trigger" "modalclose" :headers {"hx-trigger" "modalclose"
"hx-retarget" (format "#entity-table tr[data-id=\"%d\"]" tx-id) "hx-retarget" (format "#entity-table tr[data-id=\"%d\"]" tx-id)
"hx-reswap" "outerHTML"})))) "hx-reswap" "outerHTML"}))))