Skip to content

Commit 7ef51b5

Browse files
FE: Redirect to consumer group page after offset reset (#1155)
Co-authored-by: German Osin <[email protected]>
1 parent bbf5c3a commit 7ef51b5

File tree

1 file changed

+1
-1
lines changed
  • frontend/src/components/ConsumerGroups/Details/ResetOffsets

1 file changed

+1
-1
lines changed

frontend/src/components/ConsumerGroups/Details/ResetOffsets/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const Form: React.FC<FormProps> = ({ defaultValues, partitions, topics }) => {
9898

9999
const onSubmit = async (data: ConsumerGroupOffsetsReset) => {
100100
await reset.mutateAsync(data);
101-
navigate('../');
101+
navigate(-1);
102102
};
103103

104104
return (

0 commit comments

Comments
 (0)