Skip to content

Commit

Permalink
Merge pull request #1204 from redpanda-data/fix/reassignment-successf…
Browse files Browse the repository at this point in the history
…ul-message

Provides Reassignment successful message
  • Loading branch information
jvorcak authored Apr 4, 2024
2 parents 52a7b13 + 25f0279 commit 437d45e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -510,13 +510,15 @@ class ReassignPartitions extends PageComponent {
// No errors
toast.update(toastRef, {
status: 'success',
description: 'Reassignment successful',
duration: 2500,
})
});
return true;
} else if (startedCount > 0) {
// Some errors
toast.update(toastRef, {
status: 'success',
description: 'Reassignment successful',
duration: 2500,
})
this.setReassignError(startedCount, errors);
Expand Down

0 comments on commit 437d45e

Please sign in to comment.