LT-91: Missing "selected study" emphasis in lesion table column header (work-in-progress)
This commit is contained in:
parent
91bd8cab47
commit
75269e43f1
@ -69,6 +69,12 @@ Template.lesionTable.onRendered(function() {
|
||||
// Put a visual indicator (<) in timepoint header in lesion table for active timepoints
|
||||
// timepointLoaded property is used to put indicator for loaded timepoints in viewport
|
||||
self.autorun(function() {
|
||||
var ViewerData = Session.get("ViewerData");
|
||||
var contentId = Session.get("activeContentId");
|
||||
if (contentId) {
|
||||
var viewerData = ViewerData[contentId];
|
||||
if (viewerData) {
|
||||
if (viewerData.loadedSeriesData) {
|
||||
// Get study dates of imageViewerViewport elements
|
||||
var loadedStudyDates = {
|
||||
patientId: "",
|
||||
@ -112,5 +118,9 @@ Template.lesionTable.onRendered(function() {
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user