File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
redisinsight/ui/src/pages/browser Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { useDispatch, useSelector } from 'react-redux'
4
4
import cx from 'classnames'
5
5
import {
6
6
EuiResizableContainer ,
7
- EuiButtonEmpty ,
7
+ EuiButton ,
8
8
} from '@elastic/eui'
9
9
10
10
import {
@@ -217,14 +217,17 @@ const BrowserPage = () => {
217
217
< InstanceHeader onChangeDbIndex = { onChangeDbIndex } />
218
218
{ arePanelsCollapsed && isRightPanelOpen && ! isBrowserFullScreen && (
219
219
< div >
220
- < EuiButtonEmpty
220
+ < EuiButton
221
+ fill
222
+ color = "secondary"
221
223
iconType = "arrowLeft"
224
+ size = "s"
222
225
onClick = { closePanel }
223
226
className = { styles . backBtn }
224
227
data-testid = "back-right-panel-btn"
225
228
>
226
229
Back
227
- </ EuiButtonEmpty >
230
+ </ EuiButton >
228
231
</ div >
229
232
) }
230
233
< div className = { cx ( {
You can’t perform that action at this time.
0 commit comments