Skip to content

Commit

Permalink
Merge pull request #1133 from jennydaman/retrieve-needs-studyinstanceuid
Browse files Browse the repository at this point in the history
Add back StudyInstanceUID to DataFetchQuery
  • Loading branch information
jennydaman authored Mar 28, 2024
2 parents 20daeb8 + 265bc6b commit ca69b7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Pacs/components/SeriesCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ const SeriesCardCopy = ({ series }: { series: any }) => {

const pullQuery: DataFetchQuery = useMemo(() => {
return {
StudyInstanceUID: StudyInstanceUID.value,
SeriesInstanceUID: SeriesInstanceUID.value,
};
}, [SeriesInstanceUID.value]);
Expand Down
1 change: 1 addition & 0 deletions src/components/Pacs/pfdcmClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export interface ImageStatusType {

export interface DataFetchQuery {
SeriesInstanceUID: string;
StudyInstanceUID: string;
}

class PfdcmClient {
Expand Down

0 comments on commit ca69b7a

Please sign in to comment.