DDMeaqua 1 year ago
parent
commit
7f1b44befe
2 changed files with 2 additions and 6 deletions
  1. 0 5
      app/components/sidebar.tsx
  2. 2 1
      app/components/ui-lib.module.scss

+ 0 - 5
app/components/sidebar.tsx

@@ -254,11 +254,6 @@ export function SideBar(props: { className?: string }) {
         {showPluginSelector && (
           <Selector
             items={[
-              {
-                title: "👇 Please select the plugin you need to use",
-                value: "-",
-                disable: true,
-              },
               ...PLUGINS.map((item) => {
                 return {
                   title: item.name,

+ 2 - 1
app/components/ui-lib.module.scss

@@ -312,7 +312,8 @@
     min-width: 300px;
     .list {
       max-height: 90vh;
-      overflow: hidden;
+      overflow-x: hidden;
+      overflow-y: auto;
 
       .list-item {
         cursor: pointer;