chore: show existing when add file

This commit is contained in:
jialin
2025-10-23 11:52:49 +08:00
parent cc0580301e
commit a815e71bfe
25 changed files with 256 additions and 97 deletions
+2 -2
View File
@@ -139,7 +139,7 @@ const SelectPanel: React.FC<SelectPanelProps> = ({
</Button>
</Header>
<SelectedList
maxHeight={height - 40}
maxHeight={height - 50}
selectedList={options.filter((item) =>
selectedKeys.includes(item.key)
)}
@@ -194,7 +194,7 @@ const SelectPanel: React.FC<SelectPanelProps> = ({
</Header>
{showOptions.length > 0 ? (
<List
maxHeight={height - 40}
maxHeight={height - 50}
dataList={showOptions}
selectedKeys={selectedKeys}
onSelectChange={handleSelectChange}