This is an automated email from the ASF dual-hosted git repository.
andytaylor pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis-console.git
The following commit(s) were added to refs/heads/main by this push:
new b9bea38 ARTEMIS-5175 - Tidied up help messages and general text in UI
b9bea38 is described below
commit b9bea384f93d0117666f740ca485c67257f6dae9
Author: John Clifford <[email protected]>
AuthorDate: Mon Nov 18 16:31:48 2024 +0000
ARTEMIS-5175 - Tidied up help messages and general text in UI
---
.../src/artemis-extension/artemis/ArtemisPreferences.tsx | 2 +-
.../artemis/addresses/AddressesTable.tsx | 4 ++--
.../artemis/addresses/CreateAddress.tsx | 4 ++--
.../artemis/addresses/DeleteAddress.tsx | 6 +++---
.../artemis/connections/ConnectionsTable.tsx | 4 ++--
.../artemis/consumers/ConsumerTable.tsx | 4 ++--
.../artemis-extension/artemis/messages/MessagesTable.tsx | 16 ++++++++--------
.../artemis-extension/artemis/messages/SendMessage.tsx | 15 ++++-----------
.../src/artemis-extension/artemis/queues/CreateQueue.tsx | 16 ++++++++--------
.../src/artemis-extension/artemis/queues/DeleteQueue.tsx | 10 +++++-----
.../src/artemis-extension/artemis/queues/QueuesTable.tsx | 4 ++--
.../artemis-extension/artemis/sessions/SessionsTable.tsx | 4 ++--
.../src/artemis-extension/artemis/table/ArtemisTable.tsx | 2 +-
13 files changed, 42 insertions(+), 49 deletions(-)
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/ArtemisPreferences.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/ArtemisPreferences.tsx
index 0e8cbe3..c782011 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/ArtemisPreferences.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/ArtemisPreferences.tsx
@@ -123,7 +123,7 @@ const ArtemisPreferencesForm: React.FunctionComponent = ()
=> {
label='Browse Bytes Messages'
fieldId='artemis-form-showJMXView'
labelIcon={
- <TooltipHelpIcon tooltip='Browsing Bytes messages should show the
body as this.' />
+ <TooltipHelpIcon tooltip='Format in which a BytesMessage body is
shown' />
}>
<Flex>
<FlexItem flex={{ default: 'flexNone', md: 'flex_2' }}>
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/AddressesTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/AddressesTable.tsx
index cccb9c4..329525e 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/AddressesTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/AddressesTable.tsx
@@ -206,7 +206,7 @@ export const AddressesTable:
React.FunctionComponent<Navigate> = (navigate) => {
You are about to delete address {address}
</Text>
<Text component="p">
- This operation cannot be undone so please be careful.
+ This operation cannot be undone.
</Text>
</TextContent>
</Modal>
@@ -260,4 +260,4 @@ export const AddressesTable:
React.FunctionComponent<Navigate> = (navigate) => {
</ArtemisContext.Provider>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/CreateAddress.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/CreateAddress.tsx
index ae94975..7403d62 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/CreateAddress.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/CreateAddress.tsx
@@ -51,7 +51,7 @@ export const CreateAddress: React.FunctionComponent = () => {
return (
<>
<Title headingLevel="h2">Create Address</Title>
- <ConnectHint text={['This page allows you to create a new address on the
broker, if you want the address to support JMS like queues, i.e. point to
point, then choose anycast. If you want your address to support JMS like topic
subscriptions, publish/subscribe, then choose multicast.']}/>
+ <ConnectHint text={['Use this page to create a new address on the
broker. If you want the address to support JMS-like queues, that is
point-to-point messaging, choose Anycast. If you want the address to support
JMS-like topic subscriptions, that is publish-subscribe messaging, choose
Multicast.']}/>
<br/>
<Form>
<FormGroup label="Address Name">
@@ -74,4 +74,4 @@ export const CreateAddress: React.FunctionComponent = () => {
</Form>
</>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/DeleteAddress.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/DeleteAddress.tsx
index 5c47560..f10e34d 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/DeleteAddress.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/addresses/DeleteAddress.tsx
@@ -50,7 +50,7 @@ export const DeleteAddress:
React.FunctionComponent<DeleteAddressProps> = (props
return (
<>
<Title headingLevel="h2">Delete Address {props.address}</Title>
- <ConnectHint text={["This page allows you to delete the chosen address
on the broker.", "Note that this will only succeed if the address has no queues
bound to it."]}/>
+ <ConnectHint text={["Use this page to delete the selected address on the
broker. The address is deleted only if it has no queues bound to it."]}/>
<Form>
<ActionGroup>
<Button variant="primary" onClick={() => setShowDeleteModal(true)}
>Delete</Button>
@@ -79,10 +79,10 @@ export const DeleteAddress:
React.FunctionComponent<DeleteAddressProps> = (props
You are about to delete address {props.address}
</Text>
<Text component="p">
- This operation cannot be undone so please be careful.
+ This operation cannot be undone.
</Text>
</TextContent>
</Modal>
</>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/connections/ConnectionsTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/connections/ConnectionsTable.tsx
index bac7b46..e7dff41 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/connections/ConnectionsTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/connections/ConnectionsTable.tsx
@@ -102,8 +102,8 @@ export const ConnectionsTable:
React.FunctionComponent<Navigate> = (navigate) =>
<Button key="cancel" variant="secondary" onClick={() =>
setShowConnectionCloseDialog(false)}>
Cancel
</Button>
- ]}><p>You are about to close connection with id:
<b>{connectionToClose}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ ]}><p>You are about to close connection with id:
<b>{connectionToClose}</b>.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
</>)
}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/consumers/ConsumerTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/consumers/ConsumerTable.tsx
index 0be33c2..710996f 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/consumers/ConsumerTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/consumers/ConsumerTable.tsx
@@ -134,8 +134,8 @@ export const ConsumerTable:
React.FunctionComponent<Navigate> = navigate => {
Cancel
</Button>
]}><p>You are about to close consumer with id:
<b>{consumerToClose}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
</>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/MessagesTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/MessagesTable.tsx
index 5c02d5c..632fd62 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/MessagesTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/MessagesTable.tsx
@@ -216,12 +216,12 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
if (rejectedReasons.length > 0) {
eventService.notify({
type: 'warning',
- message: "not all messages deleted: errors " +
rejectedReasons.toString(),
+ message: "Not all messages deleted: errors " +
rejectedReasons.toString(),
})
} else {
eventService.notify({
type: 'success',
- message: "Messages Successfully Deleted [" + selectedMessages +
"]",
+ message: "Messages deleted successfully [" + selectedMessages +
"]",
})
}
});
@@ -245,12 +245,12 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
if (rejectedReasons.length > 0) {
eventService.notify({
type: 'warning',
- message: "not all messages moved: errors " +
rejectedReasons.toString(),
+ message: "Not all messages moved: errors " +
rejectedReasons.toString(),
})
} else {
eventService.notify({
type: 'success',
- message: "Messages Successfully Moved [" + selectedMessages + "]",
+ message: "Messages moved successfully [" + selectedMessages + "]",
})
}
});
@@ -407,7 +407,7 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
You are about to delete message(s) {selectedMessages.toString()}
</Text>
<Text component="p">
- This operation cannot be undone so please be careful.
+ This operation cannot be undone.
</Text>
</TextContent>
</Modal>
@@ -434,7 +434,7 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
You are about to move messages {selectedMessages.toString()}
</Text>
<Text component="p">
- This operation cannot be undone so please be careful.
+ This operation cannot be undone.
</Text>
<QueueSelectInput selectQueue={setSelectedTargetQueue}/>
</TextContent>
@@ -486,7 +486,7 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
variant="small"
description={
<TextContent>
- <Text>Selected categories will be displayed in the table.</Text>
+ <Text>Selected categories are displayed in the table.</Text>
<Button isInline onClick={selectAllColumns} variant="link">
Select all
</Button>
@@ -527,4 +527,4 @@ export const MessagesTable:
React.FunctionComponent<MessageProps> = props => {
</Modal>
</React.Fragment>
);
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/SendMessage.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/SendMessage.tsx
index 593496d..5fd9ffd 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/SendMessage.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/messages/SendMessage.tsx
@@ -285,12 +285,7 @@ export const SendMessage:
React.FunctionComponent<SendMessageProps> = (props: Se
const Hint = () => (
<TextContent>
<Text component='p'>
- This page allows you to create a queue bound to the chosen address.
- </Text>
- <Text component='p'>
- This page allows you to send a message to the chosen queue. The
message will be of type <code>text</code>
- message and it will be possible to add headers to the message. The
sending of the message will be authenticated
- using the current logon user, unselect <code>use current logon
user</code> to use a different user.
+ Use this page to send a message of type <code>TextMessage</code> to an
address or queue.
</Text>
</TextContent>
)
@@ -303,7 +298,7 @@ export const SendMessage:
React.FunctionComponent<SendMessageProps> = (props: Se
<Form onSubmit={handleSubmit}>
<FormGroup
label="Durable"
- labelIcon={<Tooltip content='If durable the message will be marked
persistent and written to the brokers journal if the destination queue is
durable.'><InfoCircleIcon /></Tooltip>}
+ labelIcon={<Tooltip content='Mark the message as persistent and
write it to the broker journal if the destination queue is
durable.'><InfoCircleIcon /></Tooltip>}
>
<Checkbox
isChecked={isDurableChecked}
@@ -313,9 +308,7 @@ export const SendMessage:
React.FunctionComponent<SendMessageProps> = (props: Se
</FormGroup>
<FormGroup label="Create Message ID"
labelIcon={
- <Tooltip content='The Message ID is an automatically generated
UUID that is set on the Message by the broker before it is routed.
- If using a JMS client this would be the JMS Message ID on the JMS
Message, this typically would not get
- set for non JMS clients. Historically and on some other tabs this is
also referred to as the User ID..'><InfoCircleIcon />
+ <Tooltip content='Select to request that the broker generates a
universally unique identifier (UUID) on the message before it is routed. For a
JMS client, the UUID is the JMS Message ID of the message. Normally, not
required if you are using a non-JMS client.'><InfoCircleIcon />
</Tooltip>}>
<Checkbox
isChecked={isCreateIDChecked}
@@ -323,7 +316,7 @@ export const SendMessage:
React.FunctionComponent<SendMessageProps> = (props: Se
id="createid" />
</FormGroup>
<FormGroup label="Use Current Logged in User"
- labelIcon={<Tooltip content='This option allows a user to send
messages with the permissions of the users current logon, disable it to send
messages with different permissions than the users current logon
provides'><InfoCircleIcon /></Tooltip>}
+ labelIcon={<Tooltip content='Use the credentials of the user that is
currently logged in to the console to send a message. If you want to use a
different user, clear the checkbox and specify a username and
password.'><InfoCircleIcon /></Tooltip>}
>
<Checkbox
isChecked={isUseLogonChecked}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/CreateQueue.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/CreateQueue.tsx
index c4fcdd3..18cae5e 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/CreateQueue.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/CreateQueue.tsx
@@ -121,7 +121,7 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
const Hint = () => (
<TextContent>
<Text component='p'>
- This page allows you to create a queue bound to the chosen
address.
+ Use this page to create a queue that is bound to the selected
address.
</Text>
</TextContent>
)
@@ -145,14 +145,14 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
onChange={handleQueueNameChange} />
</FormGroup>
<FormGroup role="radiogroup" isInline fieldId="routing-typr"
label="Routing Type" labelIcon={
- <Tooltip content='if you want the queue to support JMS
like queues, i.e. point to point, then choose anycast. If you want your address
to support JMS like topic subscriptions, publish/subscribe, then choose
multicast.'><InfoCircleIcon /></Tooltip>}
+ <Tooltip content='If you want the queue to support
JMS-like queues, that is point-to-point messaging, choose Anycast. If you want
the address to support JMS-like topic subscriptions, that is publish-subscribe
messaging, choose Multicast.'><InfoCircleIcon /></Tooltip>}
>
<Radio name="basic-inline-radio" label="Anycast"
id="ANYCAST" onChange={() => handleQueueRoutingTypeChange("ANYCAST")} />
<Radio name="basic-inline-radio" label="Multicast"
id="MULTICAST" onChange={() => handleQueueRoutingTypeChange("MULTICAST")} />
</FormGroup>
<FormGroup label="Durable"
labelIcon={
- <Tooltip content='Selecting durable means that the
queue will survive a restart of the broker.'><InfoCircleIcon /></Tooltip>}
+ <Tooltip content='Select durable to ensure that the
queue remains on the broker after a broker restart.'><InfoCircleIcon
/></Tooltip>}
>
<Checkbox
isChecked={isDurableChecked}
@@ -161,7 +161,7 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
</FormGroup>
<FormGroup label="Filter"
labelIcon={
- <Tooltip content={<Text>Adding a filter expression
will mean that only messages that match that filter will be routed to this
queue: see <a
href="https://activemq.apache.org/components/artemis/documentation/latest/filter-expressions.html"
rel="noreferrer" target="_blank">Filter
Expressions</a></Text>}><InfoCircleIcon /></Tooltip>}
+ <Tooltip content={<Text>Only messages that match the
filter expression are routed to this queue: see <a
href="https://activemq.apache.org/components/artemis/documentation/latest/filter-expressions.html"
rel="noreferrer" target="_blank">Filter
Expressions</a></Text>}><InfoCircleIcon /></Tooltip>}
>
<TextInput
isRequired
@@ -173,7 +173,7 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
</FormGroup>
<FormGroup label="Max Consumers"
labelIcon={
- <Tooltip content='Max consumers will limit how many
consumers can consume from a queue at any one time, -1 means no
limit.'><InfoCircleIcon /></Tooltip>}
+ <Tooltip content='The maximum number of consumers that
can consume from the queue at any one time, -1 means no limit.'><InfoCircleIcon
/></Tooltip>}
>
<NumberInput
value={maxConsumers}
@@ -186,7 +186,7 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
plusBtnAriaLabel="plus" />
</FormGroup>
<FormGroup label="Purge when no Consumers"
- labelIcon={<Tooltip content='Purge on no consumers means
the queue will not start receiving messages until a consumer is attached. When
the last consumer is detached from the queue. The queue is purged (its messages
are removed) and will not receive any more messages until a new consumer is
attached.'><InfoCircleIcon /></Tooltip>}
+ labelIcon={<Tooltip content='Prevent the queue from
receiving messages until a consumer attaches. Also, purge the queue to remove
any messages present when the last remaining consumer detaches from the queue.
After the queue is purged, it does not receive any further messages until a new
consumer attaches.'><InfoCircleIcon /></Tooltip>}
>
<Checkbox
isChecked={isPurgeChecked}
@@ -194,7 +194,7 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
id="purge" />
</FormGroup>
<FormGroup label="extra configuration" labelIcon={
- <Tooltip content={<Text>Extra configuration not exposed
above can be configured using the JSON format of a set of key/value pairs, for
instance <code>delay-before-dispatch</code> or
<code>auto-delete</code>.</Text>}><InfoCircleIcon /></Tooltip>}
+ <Tooltip content={<Text>Specify additional configuration
items, that are not exposed, as a set of key-value pairs in JSON format. For
example, <code>delay-before-dispatch</code> or
<code>auto-delete</code>.</Text>}><InfoCircleIcon /></Tooltip>}
>
{/* eslint-disable-next-line react/jsx-no-undef */}
<Button variant='link' onClick={handleAddConfiguration}>
@@ -242,4 +242,4 @@ export const CreateQueue:
React.FunctionComponent<CreateQueueProps> = (props: Cr
</ActionGroup>
</Form></>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/DeleteQueue.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/DeleteQueue.tsx
index e235db1..fa7c28e 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/DeleteQueue.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/DeleteQueue.tsx
@@ -73,13 +73,13 @@ export const DeleteQueue:
React.FunctionComponent<DeleteQueueProps> = (props: De
return (
<>
<Title headingLevel="h2">Delete/Purge Queue {props.queue}</Title>
- <ConnectHint text={["This allows you to delete the chosen Queue on the
broker.", "Note that this will only succeed if the queue has no consumers bound
to it."]}/>
+ <ConnectHint text={["Delete the selected broker queue. The queue is
deleted only if it has no consumers bound to it."]}/>
<Form>
<ActionGroup>
<Button variant="primary" onClick={() => setShowDeleteModal(true)}
>Delete</Button>
</ActionGroup>
</Form>
- <ConnectHint text={["This allows you to delete all the messages in the
chosen Queue on the broker.", ""]}/>
+ <ConnectHint text={["Delete all the messages in the selected broker
queue."]}/>
<Form>
<ActionGroup>
<Button variant="primary" onClick={() => setShowPurgeModal(true)}
>Purge</Button>
@@ -99,7 +99,7 @@ export const DeleteQueue:
React.FunctionComponent<DeleteQueueProps> = (props: De
Cancel
</Button>
]}><p>You are about to delete queue <b>{props.queue}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
<Modal
aria-label='queue-purge-modal'
@@ -115,8 +115,8 @@ export const DeleteQueue:
React.FunctionComponent<DeleteQueueProps> = (props: De
Cancel
</Button>
]}><p>You are about to delete all the messages in queue
<b>{props.queue}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
</>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/QueuesTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/QueuesTable.tsx
index 14a25e7..04c662f 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/QueuesTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/queues/QueuesTable.tsx
@@ -268,7 +268,7 @@ export const QueuesTable:
React.FunctionComponent<QueueNavigate> = navigate => {
Cancel
</Button>
]}><p>You are about to delete queue <b>{queue}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
<Modal
aria-label='attributes-modal'
@@ -308,7 +308,7 @@ export const QueuesTable:
React.FunctionComponent<QueueNavigate> = navigate => {
Cancel
</Button>
]}><p>You are about to remove all messages from queue <b>{queue}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal>
<Modal
aria-label='queue-send-modal'
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/sessions/SessionsTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/sessions/SessionsTable.tsx
index eaad063..1442714 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/sessions/SessionsTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/sessions/SessionsTable.tsx
@@ -123,7 +123,7 @@ export const SessionsTable:
React.FunctionComponent<Navigate> = navigate => {
Cancel
</Button>
]}><p>You are about to close session with id:
<b>{sessionToClose}</b>.</p>
- <p>This operation cannot be undone so please be careful.</p>
+ <p>This operation cannot be undone.</p>
</Modal></>
)
-}
\ No newline at end of file
+}
diff --git
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/table/ArtemisTable.tsx
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/table/ArtemisTable.tsx
index b2d352d..0722618 100644
---
a/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/table/ArtemisTable.tsx
+++
b/artemis-console-extension/artemis-extension/src/artemis-extension/artemis/table/ArtemisTable.tsx
@@ -251,7 +251,7 @@ const operationOptions = [
variant="small"
description={
<TextContent>
- <Text>Selected categories will be displayed in the table.</Text>
+ <Text>Selected categories are displayed in the table.</Text>
<Button isInline onClick={selectAllColumns} variant="link">
Select all
</Button>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact