Skip to content

Commit

Permalink
Merge pull request #35913 from paultsimura/fix/35836-split-tag
Browse files Browse the repository at this point in the history
Fix setting tag for split requests
  • Loading branch information
pecanoro authored Feb 7, 2024
2 parents f6ba751 + cdfd9cd commit fc4a44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/iou/request/step/IOURequestStepTag.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function IOURequestStepTag({
const updateTag = (selectedTag) => {
const isSelectedTag = selectedTag.searchText === tag;
const updatedTag = !isSelectedTag ? selectedTag.searchText : '';
if (isSplitBill) {
if (isSplitBill && isEditing) {
IOU.setDraftSplitTransaction(transactionID, {tag: selectedTag.searchText});
navigateBack();
return;
Expand Down

0 comments on commit fc4a44f

Please sign in to comment.