Skip to content

Commit

Permalink
Merge pull request #90 from guzman-raphael/public2021
Browse files Browse the repository at this point in the history
Disable large refresh request and set filter state for mouse sex
  • Loading branch information
jverswijver authored Nov 2, 2021
2 parents de00be8 + 77a3559 commit c4d48b8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,12 @@ export class SessionListComponent implements OnInit, OnDestroy {
keys.forEach(key => {
this.uniqueValuesForEachAttribute[key] = new Set();
})


this.uniqueValuesForEachAttribute['sex'] = {
F: false,
M: false,
U: false
}

// // Loop through each tuple
// restrictedSessions.forEach(tuple => {
Expand Down Expand Up @@ -958,7 +963,7 @@ export class SessionListComponent implements OnInit, OnDestroy {
async refreshData() {
this.isLoading = true;
this.filterStoreService.refreshSessionTableState();
await this.fetchSessions();
// await this.fetchSessions();
this.restrictedSessions = await this.applyFilter();
this.createMenu(this.restrictedSessions);
//await this.updateTableView(this.restrictedSessions);
Expand Down

0 comments on commit c4d48b8

Please sign in to comment.