diff --git a/dcm4chee-arc-ui2/src/app/study/study/study.service.ts b/dcm4chee-arc-ui2/src/app/study/study/study.service.ts index 8a8f7d3a33..55490979e0 100644 --- a/dcm4chee-arc-ui2/src/app/study/study/study.service.ts +++ b/dcm4chee-arc-ui2/src/app/study/study/study.service.ts @@ -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];