Remove unnecessary tooltip on device activity page (#26078)
Closes #26032 Signed-off-by: René Zeidler <rene.zeidler@gmx.de> Co-authored-by: Jon Koops <jonkoops@gmail.com>
This commit is contained in:
parent
d70dd9db67
commit
841e1e3d99
1 changed files with 8 additions and 12 deletions
|
@ -15,7 +15,6 @@ import {
|
|||
Split,
|
||||
SplitItem,
|
||||
Title,
|
||||
Tooltip,
|
||||
} from "@patternfly/react-core";
|
||||
import {
|
||||
DesktopIcon,
|
||||
|
@ -115,17 +114,14 @@ const DeviceActivity = () => {
|
|||
</Title>
|
||||
</SplitItem>
|
||||
<SplitItem>
|
||||
<Tooltip content={t("refreshPage")}>
|
||||
<Button
|
||||
aria-describedby="refresh page"
|
||||
id="refresh-page"
|
||||
variant="link"
|
||||
onClick={() => refresh()}
|
||||
icon={<SyncAltIcon />}
|
||||
>
|
||||
{t("refreshPage")}
|
||||
</Button>
|
||||
</Tooltip>
|
||||
<Button
|
||||
id="refresh-page"
|
||||
variant="link"
|
||||
onClick={() => refresh()}
|
||||
icon={<SyncAltIcon />}
|
||||
>
|
||||
{t("refreshPage")}
|
||||
</Button>
|
||||
|
||||
{(devices.length > 1 || devices[0].sessions.length > 1) && (
|
||||
<ContinueCancelModal
|
||||
|
|
Loading…
Reference in a new issue