File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
packages/visualizer/src/component Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -855,14 +855,16 @@ export function Player(props?: {
855
855
) }
856
856
857
857
{ props ?. reportFileContent ? (
858
- < div
859
- className = "status-icon"
860
- onMouseEnter = { ( ) => setMouseOverStatusIcon ( true ) }
861
- onMouseLeave = { ( ) => setMouseOverStatusIcon ( false ) }
862
- onClick = { ( ) => downloadReport ( props . reportFileContent ! ) }
863
- >
864
- < DownloadOutlined color = "#333" />
865
- </ div >
858
+ < Tooltip title = "Download Report" >
859
+ < div
860
+ className = "status-icon"
861
+ onMouseEnter = { ( ) => setMouseOverStatusIcon ( true ) }
862
+ onMouseLeave = { ( ) => setMouseOverStatusIcon ( false ) }
863
+ onClick = { ( ) => downloadReport ( props . reportFileContent ! ) }
864
+ >
865
+ < DownloadOutlined color = "#333" />
866
+ </ div >
867
+ </ Tooltip >
866
868
) : null }
867
869
< Tooltip title = { isRecording ? 'Generating...' : 'Export Video' } >
868
870
< div
You can’t perform that action at this time.
0 commit comments