diff --git a/portal-ui/src/screens/Console/Configurations/utils.tsx b/portal-ui/src/screens/Console/Configurations/utils.tsx index bcda8a5b8..91982a259 100644 --- a/portal-ui/src/screens/Console/Configurations/utils.tsx +++ b/portal-ui/src/screens/Console/Configurations/utils.tsx @@ -101,7 +101,7 @@ export const fieldsConfigurations: any = { label: "Comment", tooltip: "You can add a comment to this setting", type: "comment", - placeholder: "Enter Comment", + placeholder: "Enter custom notes if any", }, ], cache: [ @@ -170,7 +170,7 @@ export const fieldsConfigurations: any = { tooltip: "You can add a comment to this setting", type: "comment", multiline: true, - placeholder: "Enter Comment", + placeholder: "Enter custom notes if any", }, ], compression: [ @@ -333,7 +333,7 @@ export const fieldsConfigurations: any = { tooltip: "You can add a comment to this setting", type: "comment", multiline: true, - placeholder: "Enter Comment", + placeholder: "Enter custom notes if any", }, ], identity_openid: [ @@ -480,7 +480,7 @@ export const fieldsConfigurations: any = { label: "Comment", tooltip: "Optionally add a comment to this setting", type: "comment", - placeholder: "Enter Comment", + placeholder: "Enter custom notes if any", }, ], logger_webhook: [ diff --git a/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfMySql.tsx b/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfMySql.tsx index cea97b7cf..6a4a3d241 100644 --- a/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfMySql.tsx +++ b/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfMySql.tsx @@ -297,7 +297,7 @@ const ConfMySql = ({ onChange, classes }: IConfMySqlProps) => { id="comment" name="comment" label="Comment" - placeholder="Enter Comment" + placeholder="Enter custom notes if any" value={comment} onChange={(e: React.ChangeEvent) => { setComment(e.target.value); diff --git a/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfPostgres.tsx b/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfPostgres.tsx index a56d6a062..a8d7e533d 100644 --- a/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfPostgres.tsx +++ b/portal-ui/src/screens/Console/NotificationEndpoints/CustomForms/ConfPostgres.tsx @@ -391,7 +391,7 @@ const ConfPostgres = ({ onChange, classes }: IConfPostgresProps) => { id="comment" name="comment" label="Comment" - placeholder="Enter Comment" + placeholder="Enter custom notes if any" value={comment} onChange={(e: React.ChangeEvent) => { setComment(e.target.value); diff --git a/portal-ui/src/screens/Console/NotificationEndpoints/utils.ts b/portal-ui/src/screens/Console/NotificationEndpoints/utils.ts index 653a16a55..ac90f98ca 100644 --- a/portal-ui/src/screens/Console/NotificationEndpoints/utils.ts +++ b/portal-ui/src/screens/Console/NotificationEndpoints/utils.ts @@ -117,7 +117,7 @@ const commonFields = [ label: "Comment", required: false, type: "comment", - placeholder: "Enter Comment", + placeholder: "Enter custom notes if any", }, ];