Skip to content
Snippets Groups Projects
Commit b013d9cd authored by ali asaria's avatar ali asaria
Browse files

fix display of plugins and plugin gallery

parent 3b770477
No related branches found
No related tags found
No related merge requests found
......@@ -27,19 +27,32 @@ export default function Plugins({ experimentInfo }) {
  Plugin Script Store
</Tab>
</TabList>
<TabPanel value={0} sx={{ overflow: 'auto' }}>
<LocalPlugins experimentInfo={experimentInfo} />
<TabPanel
value={0}
sx={{
height: '100%',
flexDirection: 'column',
}}
>
<Sheet
sx={{ display: 'flex', flexDirection: 'column', height: '100%' }}
>
<LocalPlugins experimentInfo={experimentInfo} />
</Sheet>
</TabPanel>
<TabPanel
value={1}
sx={{
overflow: 'hidden',
height: '100%',
display: 'flex',
flexDirection: 'column',
}}
>
<PluginGallery experimentInfo={experimentInfo} />
<Sheet
sx={{ display: 'flex', flexDirection: 'column', height: '100%' }}
>
<PluginGallery experimentInfo={experimentInfo} />
</Sheet>
</TabPanel>
</Tabs>
</Sheet>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment