Skip to content

Commit 454fe36

Browse files
committed
# - remove tooltip from download log btn
1 parent ef7cb5f commit 454fe36

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

redisinsight/ui/src/components/monitor/MonitorLog/MonitorLog.tsx

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -75,22 +75,18 @@ const MonitorLog = () => {
7575
>
7676
<EuiFlexItem grow={false}>
7777
{isSaveToFile && (
78-
<EuiToolTip
79-
content="Download Profiler Log"
78+
<EuiButton
79+
size="s"
80+
color="secondary"
81+
href={linkToDownload}
82+
iconType="download"
83+
className={styles.btn}
84+
data-testid="download-log-btn"
85+
{...downloadBtnProps}
8086
>
81-
<EuiButton
82-
size="s"
83-
color="secondary"
84-
href={linkToDownload}
85-
iconType="download"
86-
className={styles.btn}
87-
data-testid="download-log-btn"
88-
{...downloadBtnProps}
89-
>
90-
{width > SMALL_SCREEN_RESOLUTION && ' Download '}
91-
Log
92-
</EuiButton>
93-
</EuiToolTip>
87+
{width > SMALL_SCREEN_RESOLUTION && ' Download '}
88+
Log
89+
</EuiButton>
9490
)}
9591
</EuiFlexItem>
9692
<EuiFlexItem grow={false}>

0 commit comments

Comments
 (0)