Skip to content

Commit 4e2dced

Browse files
#RI-4944 - resolve demo comments
1 parent b4d26db commit 4e2dced

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

redisinsight/ui/src/pages/browser/BrowserPage.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useDispatch, useSelector } from 'react-redux'
44
import cx from 'classnames'
55
import {
66
EuiResizableContainer,
7-
EuiButtonEmpty,
7+
EuiButton,
88
} from '@elastic/eui'
99

1010
import {
@@ -217,14 +217,17 @@ const BrowserPage = () => {
217217
<InstanceHeader onChangeDbIndex={onChangeDbIndex} />
218218
{arePanelsCollapsed && isRightPanelOpen && !isBrowserFullScreen && (
219219
<div>
220-
<EuiButtonEmpty
220+
<EuiButton
221+
fill
222+
color="secondary"
221223
iconType="arrowLeft"
224+
size="s"
222225
onClick={closePanel}
223226
className={styles.backBtn}
224227
data-testid="back-right-panel-btn"
225228
>
226229
Back
227-
</EuiButtonEmpty>
230+
</EuiButton>
228231
</div>
229232
)}
230233
<div className={cx({

0 commit comments

Comments
 (0)