Explorar el Código

chore: handle workspace apps scrollbar (#1101)

Joel hace 1 año
padre
commit
23a6c85b80
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      web/app/components/explore/sidebar/index.tsx

+ 1 - 1
web/app/components/explore/sidebar/index.tsx

@@ -108,7 +108,7 @@ const SideBar: FC<{
           <div className='pl-2 text-xs text-gray-500 font-medium uppercase'>{t('explore.sidebar.workspace')}</div>
           <div className='mt-3 space-y-1 overflow-y-auto overflow-x-hidden'
             style={{
-              maxHeight: 'calc(100vh - 250px)',
+              height: 'calc(100vh - 250px)',
             }}
           >
             {installedApps.map(({ id, is_pinned, uninstallable, app: { name, icon, icon_background } }) => {