Skip to content

Commit

Permalink
Merge pull request #29 from quandm-3180/fix_spelling
Browse files Browse the repository at this point in the history
chore: fix spelling
  • Loading branch information
kimyvgy authored Oct 16, 2023
2 parents aa34987 + a45625d commit 0d98d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/popup/components/SiteList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ export default class SiteList extends Vue {
}
created() {
const cached = localStorage.getItem('expanedGroups');
const cached = localStorage.getItem('expandedGroups');
if (cached) {
this.activeNames = JSON.parse(cached);
}
}
onChange = (data: Array<string>) => {
localStorage.setItem('expanedGroups', JSON.stringify(data));
localStorage.setItem('expandedGroups', JSON.stringify(data));
}
}
</script>
Expand Down

0 comments on commit 0d98d22

Please sign in to comment.