|
@@ -51,9 +51,7 @@ const HistorylistPage: React.FC = () => {
|
|
|
const handleRowClick = (record: Task) => {
|
|
|
console.log('Row clicked:', JSON.stringify(record, null, 2));
|
|
|
console.log('Selected IDs before:', record.StudyInstanceUID);
|
|
|
- dispatch(
|
|
|
- historySelectionSlice.actions.setSelectedIds([record.StudyInstanceUID])
|
|
|
- );
|
|
|
+ dispatch(historySelectionSlice.actions.setSelectedIds([record.StudyID]));
|
|
|
};
|
|
|
|
|
|
const handleRowDoubleClick = (record: Task) => {
|