Browse Source

fix: Optimize scrolling experience on plugin page (#24314) (#24322)

tags/1.8.0
HyaCinth 2 months ago
parent
commit
09b0dd5583
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/plugins/plugin-page/plugins-panel.tsx

+ 1
- 1
web/app/components/plugins/plugin-page/plugins-panel.tsx View File

{!isPluginListLoading && ( {!isPluginListLoading && (
<> <>
{(filteredList?.length ?? 0) > 0 ? ( {(filteredList?.length ?? 0) > 0 ? (
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch px-12'>
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch overflow-y-auto px-12'>
<div className='w-full'> <div className='w-full'>
<List pluginList={filteredList || []} /> <List pluginList={filteredList || []} />
</div> </div>

Loading…
Cancel
Save