Skip to content

Commit

Permalink
Merge pull request #3151 from CVEProject/dr_legacy_lookup
Browse files Browse the repository at this point in the history
fix build type error
  • Loading branch information
athu-tran authored Oct 11, 2024
2 parents 0d4e248 + 2d1958b commit 960531c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/genericGlobals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export const useGenericGlobalsStore = defineStore('genericGlobals', {
};
},
actions: {
setUseSearch(value) {
setUseSearch(value: boolean) {
this.useSearch = value;
sessionStorage.setItem('useSearch', JSON.stringify(value));
},
setCurrentServicesUrl(value) {
setCurrentServicesUrl(value: boolean) {
this.currentServicesUrl = value;
sessionStorage.setItem('currentServicesUrl', JSON.stringify(value));
}
Expand Down

0 comments on commit 960531c

Please sign in to comment.