From 723cbcf99cb31478f50c33162a7f7dc83c151c74 Mon Sep 17 00:00:00 2001 From: Sean Tsai <aleetsaiya@gmail.com> Date: Sun, 16 Jul 2023 22:55:48 +0800 Subject: [PATCH] Fix a bug in confirm category delete (#1351) --- .../components/modals/ConfirmCategoryDelete.js | 15 ++++++++++++++- upcoming-release-notes/1351.md | 6 ++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 upcoming-release-notes/1351.md diff --git a/packages/desktop-client/src/components/modals/ConfirmCategoryDelete.js b/packages/desktop-client/src/components/modals/ConfirmCategoryDelete.js index 9c717426c..ae4b5b802 100644 --- a/packages/desktop-client/src/components/modals/ConfirmCategoryDelete.js +++ b/packages/desktop-client/src/components/modals/ConfirmCategoryDelete.js @@ -69,7 +69,20 @@ export default function ConfirmCategoryDelete({ <View style={{ flex: 1, marginLeft: 10, marginRight: 30 }}> <CategoryAutocomplete - categoryGroups={categoryGroups} + categoryGroups={ + group + ? categoryGroups.filter( + g => g.id !== group.id && !!g.is_income === isIncome, + ) + : categoryGroups + .filter(g => !!g.is_income === isIncome) + .map(g => ({ + ...g, + categories: g.categories.filter( + c => c.id !== category.id, + ), + })) + } value={transferCategory} inputProps={{ placeholder: 'Select category...', diff --git a/upcoming-release-notes/1351.md b/upcoming-release-notes/1351.md new file mode 100644 index 000000000..b16dabf45 --- /dev/null +++ b/upcoming-release-notes/1351.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [aleetsaiya] +--- + +Fix a bug that user can transfer budget to the category (or group) which user want to delete \ No newline at end of file -- GitLab