Viewers
Viewers copied to clipboard
Studies selector panel makes unable to interact with series when too many study in the list
Hi there,
I noticed a GUI problem in OHIF v3,
When a patient have a lot of studies (8 in my case), the first study selector rendering is fine but when you select a study, the series component containing the series thumbnail does not allocate enough length to be able to interact with series and select one of them
See attached capture :
Best regards,
Salim
One part of the problem is that studyitem and thumbnail list are in the same level on the dom (personal note, will try a PR)
<StudyItem date={date} description={description} numInstances={numInstances} modalities={modalities} trackedSeries={getTrackedSeries(displaySets)} isActive={isExpanded} onClick={() => { onClickStudy(studyInstanceUid); }} data-cy="thumbnail-list" /> {isExpanded && displaySets && ( <ThumbnailList thumbnails={displaySets} activeDisplaySetInstanceUID={activeDisplaySetInstanceUID} onThumbnailClick={onClickThumbnail} onThumbnailDoubleClick={onDoubleClickThumbnail} onClickUntrack={onClickUntrack} /> )}
Solved