Skip to content

Commit

Permalink
fixing selected webapp, fixing orderby default on no filter template #…
Browse files Browse the repository at this point in the history
  • Loading branch information
shral committed Dec 18, 2023
1 parent 7896548 commit a1a2c63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dcm4chee-arc-ui2/src/app/study/study/study.service.ts
Expand Up @@ -274,7 +274,9 @@ export class StudyService {
};

clearFilterObject(tab: DicomMode, filterObject:StudyFilterConfig){
const keys = this.getFilterKeysFromTab(tab);
let keys = this.getFilterKeysFromTab(tab);
keys = keys || [];
keys.push('webApp');
Object.keys(filterObject.filterModel).forEach(filterKey=>{
if(keys.indexOf(filterKey) === -1){
delete filterObject.filterModel[filterKey];
Expand Down

0 comments on commit a1a2c63

Please sign in to comment.