Skip to content

Commit b3b6df9

Browse files
authored
Minor fixes to Config screen tooltips (#2857)
1 parent fe7be4e commit b3b6df9

File tree

3 files changed

+879
-874
lines changed

3 files changed

+879
-874
lines changed

portal-ui/src/screens/Console/Configurations/ConfigurationPanels/ExportConfigButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ExportConfigButton = () => {
2525
);
2626

2727
return (
28-
<TooltipWrapper tooltip="Warning!. The resulting file would contain server configuration information in plain text.">
28+
<TooltipWrapper tooltip="Warning! The resulting file will contain server configuration information in plain text">
2929
<Button
3030
id={"export-config"}
3131
onClick={() => {

portal-ui/src/screens/Console/Configurations/utils.tsx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const fieldsConfigurations: any = {
105105
required: false,
106106
label: "Extensions",
107107
tooltip:
108-
'Extensions to compress e.g. ".txt",".log" or ".csv", you can write one per field',
108+
'Extensions to compress e.g. ".txt", ".log" or ".csv" - you can write one per field',
109109
type: "csv",
110110
placeholder: "Enter an Extension",
111111
withBorder: true,
@@ -115,7 +115,7 @@ export const fieldsConfigurations: any = {
115115
required: false,
116116
label: "Mime Types",
117117
tooltip:
118-
'Mime types e.g. "text/*","application/json" or "application/xml", you can write one per field',
118+
'Mime types e.g. "text/*", "application/json" or "application/xml" - you can write one per field',
119119
type: "csv",
120120
placeholder: "Enter a Mime Type",
121121
withBorder: true,
@@ -170,16 +170,16 @@ export const fieldsConfigurations: any = {
170170
required: false,
171171
label: "Max Sleep",
172172
tooltip:
173-
"Maximum sleep duration between objects to slow down heal operation. eg. 2s",
173+
"Maximum sleep duration between objects to slow down heal operation, e.g. 2s",
174174
type: "duration",
175-
placeholder: "Enter Max Sleep duration",
175+
placeholder: "Enter Max Sleep Duration",
176176
},
177177
{
178178
name: "max_io",
179179
required: false,
180180
label: "Max IO",
181181
tooltip:
182-
"Maximum IO requests allowed between objects to slow down heal operation. eg. 3",
182+
"Maximum IO requests allowed between objects to slow down heal operation, e.g. 3",
183183
type: "number",
184184
placeholder: "Enter Max IO",
185185
},
@@ -188,7 +188,7 @@ export const fieldsConfigurations: any = {
188188
{
189189
name: "delay",
190190
required: false,
191-
label: "Delay multiplier",
191+
label: "Delay Multiplier",
192192
tooltip: "Scanner delay multiplier, defaults to '10.0'",
193193
type: "number",
194194
placeholder: "Enter Delay",
@@ -216,7 +216,7 @@ export const fieldsConfigurations: any = {
216216
required: true,
217217
label: "Endpoints",
218218
tooltip:
219-
'List of etcd endpoints e.g. "http://localhost:2379", you can write one per field',
219+
'List of etcd endpoints e.g. "http://localhost:2379" - you can write one per field',
220220
type: "csv",
221221
placeholder: "Enter Endpoint",
222222
},
@@ -310,7 +310,7 @@ export const fieldsConfigurations: any = {
310310
required: true,
311311
label: "Brokers",
312312
type: "csv",
313-
placeholder: "Enter Kafka broker",
313+
placeholder: "Enter Kafka Broker",
314314
},
315315
{
316316
name: "topic",
@@ -324,7 +324,8 @@ export const fieldsConfigurations: any = {
324324
name: "sasl",
325325
required: false,
326326
label: "Use SASL",
327-
tooltip: "Enable SASL authentication",
327+
tooltip:
328+
"Enable SASL (Simple Authentication and Security Layer) authentication",
328329
type: "on|off",
329330
},
330331
{
@@ -355,7 +356,7 @@ export const fieldsConfigurations: any = {
355356
name: "tls",
356357
required: false,
357358
label: "Use TLS",
358-
tooltip: "Enable TLS",
359+
tooltip: "Enable TLS (Transport Layer Security)",
359360
type: "on|off",
360361
},
361362
{
@@ -386,7 +387,7 @@ export const fieldsConfigurations: any = {
386387
required: false,
387388
label: "TLS Client Auth",
388389
tooltip:
389-
"ClientAuth determines the Kafka server's policy for TLS client auth",
390+
"ClientAuth determines the Kafka server's policy for TLS client authorization",
390391
type: "string",
391392
},
392393
{

0 commit comments

Comments
 (0)