@@ -95,7 +95,7 @@ const EventActionCell = ({
9595 onClick = { onClickEventDetails }
9696 className = { "more" }
9797 editAccessRole = { "ROLE_UI_EVENTS_DETAILS_VIEW" }
98- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.DETAILS" }
98+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.DETAILS"} // Disabled due to performance concerns
9999 />
100100
101101 { /* If event belongs to a series then the corresponding series details can be opened */ }
@@ -104,14 +104,14 @@ const EventActionCell = ({
104104 onClick = { onClickSeriesDetails }
105105 className = { "more-series" }
106106 editAccessRole = { "ROLE_UI_SERIES_DETAILS_VIEW" }
107- tooltipText = { "EVENTS.SERIES.TABLE.TOOLTIP.DETAILS" }
107+ // tooltipText={"EVENTS.SERIES.TABLE.TOOLTIP.DETAILS"} // Disabled due to performance concerns
108108 />
109109 ) }
110110
111111 { /* Delete an event */ }
112112 < ActionCellDelete
113113 editAccessRole = { "ROLE_UI_EVENTS_DELETE" }
114- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.DELETE" }
114+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.DELETE"} // Disabled due to performance concerns
115115 resourceId = { row . id }
116116 resourceName = { row . title }
117117 resourceType = { "EVENT" }
@@ -120,29 +120,29 @@ const EventActionCell = ({
120120
121121 { /* If the event has an preview then the editor can be opened and status if it needs to be cut is shown */ }
122122 { ! ! row . has_preview && hasAccess ( "ROLE_UI_EVENTS_EDITOR_VIEW" , user ) && (
123- < Tooltip
124- title = {
125- row . needs_cutting
126- ? t ( "EVENTS.EVENTS.TABLE.TOOLTIP.EDITOR_NEEDS_CUTTING" )
127- : t ( "EVENTS.EVENTS.TABLE.TOOLTIP.EDITOR" )
128- }
129- >
123+ // <Tooltip // Disabled due to performance concerns
124+ // title={
125+ // row.needs_cutting
126+ // ? t("EVENTS.EVENTS.TABLE.TOOLTIP.EDITOR_NEEDS_CUTTING")
127+ // : t("EVENTS.EVENTS.TABLE.TOOLTIP.EDITOR")
128+ // }
129+ // >
130130 < a
131131 href = { `/editor-ui/index.html?id=${ row . id } ` }
132132 className = "cut"
133133 target = "_blank" rel = "noreferrer"
134134 >
135135 { row . needs_cutting && < span id = "badge" className = "badge" /> }
136136 </ a >
137- </ Tooltip >
137+ // </Tooltip>
138138 ) }
139139
140140 { /* If the event has comments and no open comments then the comment tab of event details can be opened directly */ }
141141 { row . has_comments && ! row . has_open_comments && (
142142 < ButtonLikeAnchor
143143 onClick = { ( ) => onClickComments ( ) }
144144 className = { "comments" }
145- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.COMMENTS" }
145+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.COMMENTS"} // Disabled due to performance concerns
146146 />
147147 ) }
148148
@@ -151,7 +151,7 @@ const EventActionCell = ({
151151 < ButtonLikeAnchor
152152 onClick = { ( ) => onClickComments ( ) }
153153 className = { "comments-open" }
154- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.COMMENTS" }
154+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.COMMENTS"} // Disabled due to performance concerns
155155 />
156156 ) }
157157
@@ -162,7 +162,7 @@ const EventActionCell = ({
162162 onClick = { ( ) => onClickWorkflow ( ) }
163163 className = { "fa fa-warning" }
164164 editAccessRole = { "ROLE_UI_EVENTS_DETAILS_WORKFLOWS_EDIT" }
165- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.PAUSED_WORKFLOW" }
165+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.PAUSED_WORKFLOW"} // Disabled due to performance concerns
166166 />
167167 }
168168
@@ -171,15 +171,15 @@ const EventActionCell = ({
171171 onClick = { ( ) => onClickAssets ( ) }
172172 className = { "fa fa-folder-open" }
173173 editAccessRole = { "ROLE_UI_EVENTS_DETAILS_ASSETS_VIEW" }
174- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.ASSETS" }
174+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.ASSETS"} // Disabled due to performance concerns
175175 />
176176
177177 { /* Open dialog for embedded code*/ }
178178 < ButtonLikeAnchor
179179 onClick = { ( ) => showEmbeddingCodeModal ( ) }
180180 className = { "fa fa-link" }
181181 editAccessRole = { "ROLE_UI_EVENTS_EMBEDDING_CODE_VIEW" }
182- tooltipText = { "EVENTS.EVENTS.TABLE.TOOLTIP.EMBEDDING_CODE" }
182+ // tooltipText={"EVENTS.EVENTS.TABLE.TOOLTIP.EMBEDDING_CODE"} // Disabled due to performance concerns
183183 />
184184
185185 { /* Embedding Code Modal */ }
0 commit comments