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 17, 2024
1 parent 7a05452 commit d93066d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hermes-console/src/dummy/topic-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const dummyTopicFormValidator = {
owner: [required()],
contentType: [required()],
retentionTimeDurationDays: [required(), min(0), max(7)],
retentionTimeDurationHours: [required(), min(0), max(7)],
retentionTimeDurationHours: [required(), min(0), max(24)],
maxMessageSize: [required(), min(0)],
offlineRetentionTime: [required(), min(0)],
ack: [required()],
Expand Down
2 changes: 1 addition & 1 deletion hermes-console/src/i18n/en-US/subscription-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const messages = {
},
adminForm: {
title: 'Warning: Admin form enabled.',
text: 'New fields in the form have been revealed (they are are followed by a warning sign). The form will be submitted regardless of the validation of the fields.',
text: 'New fields in the form have been revealed (they are followed by a warning sign). The form will be submitted regardless of the validation of the fields.',
},
},
actions: {
Expand Down

0 comments on commit d93066d

Please sign in to comment.