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:
Alex
2022-02-26 20:00:09 -07:00
committed by GitHub
parent fa2a212607
commit 1251232e30
4 changed files with 7 additions and 7 deletions

View File

@@ -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: [

View File

@@ -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);

View File

@@ -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);

View File

@@ -117,7 +117,7 @@ const commonFields = [
label: "Comment",
required: false,
type: "comment",
placeholder: "Enter Comment",
placeholder: "Enter custom notes if any",
},
];