Skip to content

Commit 09b0dd5

Browse files
authored
fix: Optimize scrolling experience on plugin page (langgenius#24314) (langgenius#24322)
1 parent 455f842 commit 09b0dd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/app/components/plugins/plugin-page/plugins-panel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const PluginsPanel = () => {
7373
{!isPluginListLoading && (
7474
<>
7575
{(filteredList?.length ?? 0) > 0 ? (
76-
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch px-12'>
76+
<div className='flex grow flex-wrap content-start items-start justify-center gap-2 self-stretch overflow-y-auto px-12'>
7777
<div className='w-full'>
7878
<List pluginList={filteredList || []} />
7979
</div>

0 commit comments

Comments
 (0)