Skip to content

Commit

Permalink
Fixes #424
Browse files Browse the repository at this point in the history
  • Loading branch information
polegkashti authored May 27, 2024
1 parent d8fd5c3 commit 63a65fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/ACLPage/Form/ForProducers/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export const toRequest = (formValues: FormValues): CreateProducerAcl => {
topicsPrefix: formValues.topicsPrefix,
transactionalId: formValues.transactionalId,
transactionsIdPrefix: formValues.transactionsIdPrefix,
idempotent: formValues.indemponent,
idempotent: formValues.idempotent,
};
};
2 changes: 1 addition & 1 deletion frontend/src/components/ACLPage/Form/ForProducers/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export interface FormValues {
topicsPrefix?: string;
transactionalId?: string;
transactionsIdPrefix?: string;
indemponent: boolean;
idempotent: boolean;
}

0 comments on commit 63a65fd

Please sign in to comment.