File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
apps/remix-ide/src/app/components
libs/remix-ui/vertical-icons-panel/src/lib Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import ReactDOM from 'react-dom'
44import { AbstractPanel } from './panel'
55import { RemixPluginPanel } from '@remix-ui/panel'
66import packageJson from '../../../../../package.json'
7- import { RemixAppManager } from '../../remixAppManager'
87import RemixUIPanelHeader from 'libs/remix-ui/panel/src/lib/plugins/panel-header'
98// const csjs = require('csjs-inject')
109
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ const RemixUiVerticalIconsPanel = ({
7070 ? 'remixui_default-icons-container remixui_requiredSection' : activateScroll && activateScroll . scrollState ? 'remixui_default-icons-container remixui_requiredSection' : 'remixui_requiredSection' } >
7171 < IconList
7272 theme = { theme }
73- icons = { icons . filter ( ( p ) => p . isRequired ) }
73+ icons = { icons . filter ( ( p ) => p . isRequired && p . profile . name !== 'pluginManager' ) }
7474 verticalIconsPlugin = { verticalIconsPlugin }
7575 itemContextAction = { itemContextAction }
7676 />
@@ -107,7 +107,7 @@ const RemixUiVerticalIconsPanel = ({
107107 /> ) : null }
108108 < IconList
109109 theme = { theme }
110- icons = { icons . filter ( ( p ) => p . profile . name === 'settings' ) }
110+ icons = { icons . filter ( ( p ) => p . profile . name === 'settings' || p . profile . name === 'pluginManager' ) }
111111 verticalIconsPlugin = { verticalIconsPlugin }
112112 itemContextAction = { itemContextAction }
113113 />
You can’t perform that action at this time.
0 commit comments