aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/GroupsPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/settings/GroupsPage.js')
-rw-r--r--modern/src/settings/GroupsPage.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/modern/src/settings/GroupsPage.js b/modern/src/settings/GroupsPage.js
index baba7f72..e009b06b 100644
--- a/modern/src/settings/GroupsPage.js
+++ b/modern/src/settings/GroupsPage.js
@@ -45,6 +45,11 @@ const GroupsPage = () => {
const actionCommand = {
key: 'command',
title: t('deviceCommand'),
+ tooltip: t('commandSend')
+ .concat(' ')
+ .concat(t('reportGroup'))
+ .concat(' ')
+ .concat(t('commandTitle')),
icon: <PublishIcon fontSize="small" />,
handler: (groupId) => navigate(`/settings/group/${groupId}/command`),
};
@@ -52,6 +57,7 @@ const GroupsPage = () => {
const actionConnections = {
key: 'connections',
title: t('sharedConnections'),
+ tooltip: t('sharedLink').concat(' ').concat(t('reportGroup')),
icon: <LinkIcon fontSize="small" />,
handler: (groupId) => navigate(`/settings/group/${groupId}/connections`),
};
@@ -75,6 +81,7 @@ const GroupsPage = () => {
itemId={item.id}
editPath="/settings/group"
endpoint="groups"
+ collectionTitle={t('reportGroup')}
setTimestamp={setTimestamp}
customActions={limitCommands ? [actionConnections] : [actionConnections, actionCommand]}
/>