Skip to content

Commit

Permalink
CR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szczygiel-m committed Sep 20, 2024
1 parent d93066d commit b735054
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hermes-console/src/dummy/topic-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export const dummyTopicFormValidator = {
ownerSource: [required()],
owner: [required()],
contentType: [required()],
retentionTimeDurationDays: [required(), min(0), max(7)],
retentionTimeDurationHours: [required(), min(0), max(24)],
retentionTimeDurationDays: [required(), min(1), max(7)],
retentionTimeDurationHours: [required(), min(1), max(24)],
maxMessageSize: [required(), min(0)],
offlineRetentionTime: [required(), min(0)],
ack: [required()],
Expand Down

0 comments on commit b735054

Please sign in to comment.