Skip to content

Commit

Permalink
Misc Changes (#1628)
Browse files Browse the repository at this point in the history
- Changed placeholder for enter comment
- Removed fmt.Println with garbage text

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>

Co-authored-by: Benjamin Perez <benjamin@bexsoft.net>
  • Loading branch information
bexsoft and Benjamin Perez committed Feb 27, 2022
1 parent fa2a212 commit 1251232
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions portal-ui/src/screens/Console/Configurations/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -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: [
Expand Down Expand Up @@ -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: [
Expand Down Expand Up @@ -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: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<HTMLInputElement>) => {
setComment(e.target.value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<HTMLInputElement>) => {
setComment(e.target.value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const commonFields = [
label: "Comment",
required: false,
type: "comment",
placeholder: "Enter Comment",
placeholder: "Enter custom notes if any",
},
];

Expand Down

0 comments on commit 1251232

Please sign in to comment.