Add StudyTime in StudyPanel for every displayed Study

I am using OHIF Viewer 3.12.0 (beta.113), built with the docker-nginx-dcm4chee-keycloak recipe, including some customizations to the viewport overlays.

I would like to display the Study Time in the Study Panel, as in our use case many patients have multiple studies acquired on the same day, and the study date alone is not sufficient to reliably identify the correct study.

I attempted to add the Study Time in panelStudyBrowser.tsx, but this did not produce any visible result.

I would really appreciate any guidance on where this information is best added, or which component or configuration would be the right place to extend. Thank you very much in advance for any pointers or suggestions.

1 Like

Hello @barmin77 . So PanelStudyBrowser.tsx would be the place where you extract the study time - likely after line 144. Then in StudyBrowser pass the time to StudyItem and display it say beside the date on line 49. Be sure to add time as a property of StudyItem. Does this make sense?

1 Like

Thank you very much!
Sounds Like someone is familiar with this :wink: i‘ll start my build machine tomorrow and let you know if it worked.

Hallo @jbocce , thank you very much for the great tips. I was able to integrate the study time and now have a better understanding of the viewer’s architecture.