Skip to content

Commit

Permalink
let -> const
Browse files Browse the repository at this point in the history
  • Loading branch information
Slawomir Wieczorek committed Jan 25, 2024
1 parent f0ef170 commit 050f75b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ export class UserManagementComponent extends BaseComponent implements OnInit, On
}

private restoreUserTableSearchFilter() {
let storageItem = sessionStorage.getItem("portal-users-table");
const storageItem = sessionStorage.getItem("portal-users-table");
if (storageItem) {
let storageItemObject = JSON.parse(storageItem);
let filterValue = storageItemObject.filters?.global?.value;
const storageItemObject = JSON.parse(storageItem);
const filterValue = storageItemObject.filters?.global?.value;
if (filterValue) {
this.filterValue = filterValue;
}
Expand Down

0 comments on commit 050f75b

Please sign in to comment.