Fix dataset card not responding to click events (#9574)

### What problem does this PR solve?

Fix home card not responding to click events

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
- [ ] New Feature (non-breaking change which adds functionality)
- [ ] Documentation Update
- [ ] Refactoring
- [ ] Performance Improvement
- [ ] Other (please describe):
This commit is contained in:
TeslaZY
2025-08-20 10:06:14 +08:00
committed by GitHub
parent e6cb74b27f
commit 7d3bb3a2f9
8 changed files with 9 additions and 17 deletions

View File

@ -77,7 +77,7 @@ export const useNavigatePage = () => {
}, [navigate]);
const navigateToSearch = useCallback(
(id: string) => {
(id: string) => () => {
navigate(`${Routes.Search}/${id}`);
},
[navigate],

View File

@ -182,8 +182,8 @@ export default {
<b>元数据为:</b><br>
<code>
{
“作者”:“Alex Dowson”,
“日期”:“2024-11-12
"作者": "Alex Dowson",
"日期": "2024-11-12"
}
</code><br>
<b>提示将为:</b><br>

View File

@ -20,9 +20,7 @@ export function AgentCard({ data, showAgentRenameModal }: DatasetCardProps) {
<MoreButton></MoreButton>
</AgentDropdown>
}
onClick={() => {
navigateToAgent(data?.id);
}}
onClick={navigateToAgent(data?.id)}
/>
);
}

View File

@ -32,9 +32,7 @@ export function DatasetCard({
<MoreButton></MoreButton>
</DatasetDropdown>
}
onClick={() => {
navigateToDataset(dataset.id);
}}
onClick={navigateToDataset(dataset.id)}
/>
);
}

View File

@ -14,7 +14,7 @@ export function SearchList() {
title: x.name,
update_time: x.update_time,
}}
onClick={() => navigateToSearch(x.id)}
onClick={navigateToSearch(x.id)}
></ApplicationCard>
));
}

View File

@ -25,9 +25,7 @@ export function ChatCard({ data, showChatRenameModal }: IProps) {
<MoreButton></MoreButton>
</ChatDropdown>
}
onClick={() => {
navigateToChat(data?.id);
}}
onClick={navigateToChat(data?.id)}
/>
);
}

View File

@ -85,7 +85,7 @@ export default function SearchList() {
res = await createSearch({ name: values.name });
}
if (res && !searchData?.id) {
navigateToSearch(res?.search_id);
navigateToSearch(res?.search_id)();
}
if (!isLoading) {
setOpenCreateModal(false);

View File

@ -22,9 +22,7 @@ export function SearchCard({ data, showSearchRenameModal }: IProps) {
<MoreButton></MoreButton>
</SearchDropdown>
}
onClick={() => {
navigateToSearch(data?.id);
}}
onClick={navigateToSearch(data?.id)}
/>
);
}