From 03ae664fe65c8ce7eb640ccbec88a26f8ab24943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Loipf=C3=BChrer?= Date: Sat, 21 Oct 2023 21:19:41 +0200 Subject: [PATCH] fix: #169 account description becomes name --- .../apps/web/src/pages/accounts/AccountDetail/AccountInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/apps/web/src/pages/accounts/AccountDetail/AccountInfo.tsx b/frontend/apps/web/src/pages/accounts/AccountDetail/AccountInfo.tsx index 5d3c4acf..4db14f30 100644 --- a/frontend/apps/web/src/pages/accounts/AccountDetail/AccountInfo.tsx +++ b/frontend/apps/web/src/pages/accounts/AccountDetail/AccountInfo.tsx @@ -179,7 +179,7 @@ export const AccountInfo: React.FC = ({ groupId, accountId }) => { name="description" error={!!validationErrors.fieldErrors.description} helperText={validationErrors.fieldErrors.description} - onChange={(value) => pushChanges({ name: value })} + onChange={(value) => pushChanges({ description: value })} value={account.description} disabled={!account.isWip} />