From 6450cf9e4bff4c6a543736978d068a64c0ae3fe6 Mon Sep 17 00:00:00 2001 From: Abdelrahman Khattab Date: Tue, 12 Dec 2023 06:04:13 +0200 Subject: [PATCH 1/2] Fix Creating unexpected groups when creating a split from a group --- src/pages/iou/request/step/IOURequestStepConfirmation.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/iou/request/step/IOURequestStepConfirmation.js b/src/pages/iou/request/step/IOURequestStepConfirmation.js index 9837a25fc826..e6995edce802 100644 --- a/src/pages/iou/request/step/IOURequestStepConfirmation.js +++ b/src/pages/iou/request/step/IOURequestStepConfirmation.js @@ -208,7 +208,9 @@ function IOURequestStepConfirmation({ trimmedComment, transaction.currency, transaction.category, + transaction.tag, report.reportID, + transaction.merchant, ); return; } From 732cd01cf1deec4333c4942cbc5119fc411deb58 Mon Sep 17 00:00:00 2001 From: Abdelrahman Khattab Date: Tue, 12 Dec 2023 06:33:00 +0200 Subject: [PATCH 2/2] adding tag and merchant to split requests --- src/pages/iou/request/step/IOURequestStepConfirmation.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/iou/request/step/IOURequestStepConfirmation.js b/src/pages/iou/request/step/IOURequestStepConfirmation.js index e6995edce802..2216d4c30bdf 100644 --- a/src/pages/iou/request/step/IOURequestStepConfirmation.js +++ b/src/pages/iou/request/step/IOURequestStepConfirmation.js @@ -225,6 +225,8 @@ function IOURequestStepConfirmation({ trimmedComment, transaction.currency, transaction.category, + transaction.tag, + transaction.merchant, ); return; }