Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ const ConfMySql = ({ onChange, classes }: IConfMySqlProps) => {
label="Queue Dir"
placeholder="Enter Queue Dir"
value={queueDir}
tooltip="staging dir for undelivered messages e.g. '/home/events'"
tooltip="Staging directory for undelivered messages e.g. '/home/events'"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setQueueDir(e.target.value);
}}
Expand All @@ -291,7 +291,7 @@ const ConfMySql = ({ onChange, classes }: IConfMySqlProps) => {
placeholder="Enter Queue Limit"
type="number"
value={queueLimit}
tooltip="maximum limit for undelivered messages, defaults to '10000'"
tooltip="Maximum limit for undelivered messages, defaults to '10000'"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setQueueLimit(e.target.value);
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ const ConfPostgres = ({ onChange, classes }: IConfPostgresProps) => {
label="Queue Dir"
placeholder="Enter Queue Directory"
value={queueDir}
tooltip="staging dir for undelivered messages e.g. '/home/events'"
tooltip="Staging directory for undelivered messages e.g. '/home/events'"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setQueueDir(e.target.value);
}}
Expand All @@ -378,7 +378,7 @@ const ConfPostgres = ({ onChange, classes }: IConfPostgresProps) => {
placeholder="Enter Queue Limit"
type="number"
value={queueLimit}
tooltip="maximum limit for undelivered messages, defaults to '10000'"
tooltip="Maximum limit for undelivered messages, defaults to '10000'"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setQueueLimit(e.target.value);
}}
Expand Down
30 changes: 15 additions & 15 deletions portal-ui/src/screens/Console/EventDestinations/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const commonFields = [
label: "Queue Directory",
required: false,

tooltip: "staging dir for undelivered messages e.g. '/home/events'",
tooltip: "Staging directory for undelivered messages e.g. '/home/events'",
type: "string",
placeholder: "Enter Queue Directory",
},
Expand All @@ -126,7 +126,7 @@ const commonFields = [
label: "Queue Limit",
required: false,

tooltip: "maximum limit for undelivered messages, defaults to '10000'",
tooltip: "Maximum limit for undelivered messages, defaults to '10000'",
type: "number",
placeholder: "Enter Queue Limit",
},
Expand Down Expand Up @@ -187,7 +187,7 @@ export const notificationEndpointsFields: any = {
name: "tls_client_auth",
label: "TLS Client Auth",
tooltip:
"Client Auth determines the Kafka server's policy for TLS client auth",
"Client Auth determines the Kafka server's policy for TLS client authorization",
type: "string",
placeholder: "Enter TLS Client Auth",
},
Expand All @@ -213,14 +213,14 @@ export const notificationEndpointsFields: any = {
{
name: "client_tls_cert",
label: "client TLS cert",
tooltip: "Path to client certificate for mTLS auth",
tooltip: "Path to client certificate for mTLS authorization",
type: "path",
placeholder: "Enter TLS Client Cert",
},
{
name: "client_tls_key",
label: "client TLS key",
tooltip: "Path to client key for mTLS auth",
tooltip: "Path to client key for mTLS authorization",
type: "path",
placeholder: "Enter TLS Client Key",
},
Expand Down Expand Up @@ -312,7 +312,7 @@ export const notificationEndpointsFields: any = {
name: "address",
required: true,
label: "Address",
tooltip: "Redis server's address. For example: `localhost:6379`",
tooltip: "Redis server's address e.g. `localhost:6379`",
type: "address",
placeholder: "Enter Address",
},
Expand Down Expand Up @@ -346,7 +346,7 @@ export const notificationEndpointsFields: any = {
name: "topic",
required: true,
label: "Topic",
tooltip: "name of the MQTT topic to publish",
tooltip: "Name of the MQTT topic to publish",
type: "string",
placeholder: "Enter Topic",
},
Expand Down Expand Up @@ -376,7 +376,7 @@ export const notificationEndpointsFields: any = {
label: "Keep Alive Interval",
tooltip: "Keep-alive interval for MQTT connections in s,m,h,d",
type: "duration",
placeholder: "Enter Keep Alive Internal",
placeholder: "Enter Keep Alive Interval",
},
{
name: "reconnect_interval",
Expand Down Expand Up @@ -448,13 +448,13 @@ export const notificationEndpointsFields: any = {
{
name: "streaming",
label: "Streaming",
tooltip: "Set to 'on', to use streaming NATS server",
tooltip: "Set to 'on' to use streaming NATS server",
type: "on|off",
},
{
name: "streaming_async",
label: "Streaming async",
tooltip: "Set to 'on', to enable asynchronous publish",
tooltip: "Set to 'on' to enable asynchronous publish",
type: "on|off",
},
{
Expand Down Expand Up @@ -488,7 +488,7 @@ export const notificationEndpointsFields: any = {
{
name: "client_key",
label: "Client Key",
tooltip: "Client cert key for NATS mTLS auth",
tooltip: "Client cert key for NATS mTLS authorization",
type: "string",
placeholder: "Enter Client Key",
},
Expand Down Expand Up @@ -530,14 +530,14 @@ export const notificationEndpointsFields: any = {
required: true,
label: "Endpoint",
tooltip:
"webhook server endpoint e.g. http://localhost:8080/minio/events",
"Webhook server endpoint e.g. http://localhost:8080/minio/events",
type: "url",
placeholder: "Enter Endpoint",
},
{
name: "auth_token",
label: "Auth Token",
tooltip: "opaque string or JWT authorization token",
tooltip: "Opaque string or JWT authorization token",
type: "string",
placeholder: "Enter auth_token",
},
Expand All @@ -563,14 +563,14 @@ export const notificationEndpointsFields: any = {
{
name: "tls",
label: "TLS",
tooltip: "set to 'on' to enable TLS",
tooltip: "Set to 'on' to enable TLS",
type: "on|off",
},
{
name: "tls_skip_verify",
label: "TLS Skip Verify",
tooltip:
'trust server TLS without verification, defaults to "on" (verify)',
'Trust server TLS without verification, defaults to "on" (verify)',
type: "on|off",
},
...commonFields,
Expand Down
4 changes: 2 additions & 2 deletions portal-ui/src/screens/Console/IDP/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const ldapFormFields = {
return !s && editMode ? "Server Address is required" : "";
},
label: "Server Insecure",
tooltip: "disable SSL certificate verification ",
tooltip: "Disable SSL certificate verification ",
placeholder: "myldapserver.com:636",
type: "toggle",
},
Expand All @@ -174,7 +174,7 @@ export const ldapFormFields = {
},
label: "Lookup Bind DN",
tooltip:
"DN for LDAP read-only service account used to perform DN and group lookups",
"DN (Distinguished Name) for LDAP read-only service account used to perform DN and group lookups",
placeholder: "cn=admin,dc=min,dc=io",
type: "text",
},
Expand Down