@@ -12,7 +12,6 @@ import NewTobiraPage, { TobiraFormProps } from "./NewTobiraPage";
12
12
import { fetchSeriesDetailsTobira , removeSeriesTobiraPath , setTobiraTabHierarchy , TobiraData , updateSeriesTobiraPath } from "../../../../slices/seriesDetailsSlice" ;
13
13
import { fetchSeriesDetailsTobiraNew , TobiraPage } from "../../../../slices/seriesSlice" ;
14
14
import ConfirmModal from "../../../shared/ConfirmModal" ;
15
- import { Tooltip } from "../../../shared/Tooltip" ;
16
15
import ButtonLikeAnchor from "../../../shared/ButtonLikeAnchor" ;
17
16
import { ModalHandle } from "../../../shared/modals/Modal" ;
18
17
import { fetchEventDetailsTobira } from "../../../../slices/eventDetailsSlice" ;
@@ -213,13 +212,12 @@ const TobiraTable = ({ tobiraData, i18nKey, openSubTab, handleDelete }: TobiraTa
213
212
{ tobiraData . hostPages . length === 0 && < tr >
214
213
< td className = "tobira-not-mounted" >
215
214
{ t ( `EVENTS.${ i18nKey } .DETAILS.TOBIRA.NOT_MOUNTED` ) }
216
- { i18nKey === "SERIES" && < Tooltip title = { t ( "EVENTS.SERIES.DETAILS.TOBIRA.MOUNT_SERIES" ) } >
217
- < ButtonLikeAnchor
218
- style = { { margin : 5 } }
219
- extraClassName = "edit fa fa-pencil-square pull-right"
220
- onClick = { ( ) => openSubTab ( "edit-path" ) }
221
- />
222
- </ Tooltip > }
215
+ { i18nKey === "SERIES" && < ButtonLikeAnchor
216
+ style = { { margin : 5 } }
217
+ extraClassName = "edit fa fa-pencil-square pull-right"
218
+ onClick = { ( ) => openSubTab ( "edit-path" ) }
219
+ tooltipText = "EVENTS.SERIES.DETAILS.TOBIRA.MOUNT_SERIES"
220
+ /> }
223
221
</ td >
224
222
</ tr > }
225
223
{ tobiraData . hostPages . map ( hostPage => < tr key = { hostPage . path } >
0 commit comments