Skip to content

Commit

Permalink
fix messages
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Dec 19, 2024
1 parent 41851dd commit 0b0d877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebApplication/src/components/StudyList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default {
'studies/isFilterEmpty', // -> this['studies/isFilterEmpty']
]),
notShowingAllResults() {
if (this.sourceType == SourceType.LOCAL_ORTHANC && this.hasExtendedFind) {
if (this.sourceType == SourceType.LOCAL_ORTHANC && !this.hasExtendedFind) {
if (this.studiesIds.length >= this.statistics.CountStudies) {
return false;
}
Expand Down Expand Up @@ -153,7 +153,7 @@ export default {
},
showEmptyStudyListIfNoSearch() {
if (this.sourceType == SourceType.LOCAL_ORTHANC) {
return this.uiOptions.StudyListContentIfNoSearch == "empty";
return !this.hasExtendedFind && this.uiOptions.StudyListContentIfNoSearch == "empty";
} else {
return true;
}
Expand Down

0 comments on commit 0b0d877

Please sign in to comment.