Misc Changes (#1628)
- 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>
This commit is contained in:
@@ -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: [
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -117,7 +117,7 @@ const commonFields = [
|
||||
label: "Comment",
|
||||
required: false,
|
||||
type: "comment",
|
||||
placeholder: "Enter Comment",
|
||||
placeholder: "Enter custom notes if any",
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user