Skip to content

Commit

Permalink
allow sorring by columns
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Dec 11, 2024
1 parent 88dac84 commit 5b9af91
Show file tree
Hide file tree
Showing 5 changed files with 271 additions and 114 deletions.
4 changes: 2 additions & 2 deletions WebApplication/src/components/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
queryableDicomWebServers: state => state.configuration.queryableDicomWebServers,
studiesIds: state => state.studies.studiesIds,
statistics: state => state.studies.statistics,
labelsFilter: state => state.studies.labelsFilter,
labelFilters: state => state.studies.labelFilters,
jobs: state => state.jobs.jobsIds,
allLabels: state => state.labels.allLabels,
hasCustomLogo: state => state.configuration.hasCustomLogo,
Expand Down Expand Up @@ -97,7 +97,7 @@ export default {
this.messageBus.emit('filter-label-changed', label);
},
isSelectedLabel(label) {
return this.labelsFilter.includes(label);
return this.labelFilters.includes(label);
},
logout(event) {
event.preventDefault();
Expand Down
Loading

0 comments on commit 5b9af91

Please sign in to comment.