From 38566b66ff42260645366b04bfe59119af15f8d7 Mon Sep 17 00:00:00 2001 From: Jason Wesson Date: Tue, 17 Oct 2023 07:12:51 +0000 Subject: [PATCH] fix: increase window height of plugin slot to allow for full profile plugin view --- .../LoadedSidebar/__snapshots__/index.test.jsx.snap | 10 ++-------- .../WidgetContainers/LoadedSidebar/index.jsx | 6 ++---- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/containers/WidgetContainers/LoadedSidebar/__snapshots__/index.test.jsx.snap b/src/containers/WidgetContainers/LoadedSidebar/__snapshots__/index.test.jsx.snap index a8c0ef37..673a38e9 100644 --- a/src/containers/WidgetContainers/LoadedSidebar/__snapshots__/index.test.jsx.snap +++ b/src/containers/WidgetContainers/LoadedSidebar/__snapshots__/index.test.jsx.snap @@ -18,16 +18,10 @@ exports[`WidgetSidebar snapshots default 1`] = ` } style={ Object { - "height": 400, + "height": 700, } } - > -
- This is default plugin content. -
- + /> `; diff --git a/src/containers/WidgetContainers/LoadedSidebar/index.jsx b/src/containers/WidgetContainers/LoadedSidebar/index.jsx index 7c197a7c..7c77e019 100644 --- a/src/containers/WidgetContainers/LoadedSidebar/index.jsx +++ b/src/containers/WidgetContainers/LoadedSidebar/index.jsx @@ -23,11 +23,9 @@ export const WidgetSidebar = ({ setSidebarShowing }) => { title: 'example plugins', }} style={{ - height: 400, + height: 700, }} - > -
This is default plugin content.
- + /> );