From fcf37cde63f6a089e960673f6821f5881277e8a3 Mon Sep 17 00:00:00 2001 From: sylenien Date: Tue, 30 Aug 2022 15:31:05 +0200 Subject: [PATCH] change(ui): add tooltip to session settings --- .../SessionSettingButton/SessionSettingButton.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx b/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx index 897a59754..5d76f8979 100644 --- a/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx +++ b/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx @@ -2,6 +2,7 @@ import { useModal } from 'App/components/Modal'; import React from 'react'; import SessionSettings from 'Shared/SessionSettings'; import { Button } from 'UI'; +import { Tooltip } from 'react-tippy'; function SessionSettingButton(props: any) { const { showModal } = useModal(); @@ -12,7 +13,10 @@ function SessionSettingButton(props: any) { return (
-
); }