Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin Polsky committed Oct 22, 2023
1 parent 684d2c3 commit 8eef0bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions board/frontend/lib/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { writable, readable } from "svelte/store";
export const loadingBoardInfo = writable("Loading...");
export let authorized = writable(false);

const storedSettingsMergeRequests = localStorage.getItem("settingsMergeRequests")
const storedSettingsMergeRequests = localStorage.getItem("settingsMergeRequests");
export const settingsMergeRequests = writable(storedSettingsMergeRequests);
settingsMergeRequests.subscribe(val => {
localStorage.setItem("settingsMergeRequests", val);
})
});

export const projects = writable([]);
export const teamprojects = writable({});
Expand Down

0 comments on commit 8eef0bb

Please sign in to comment.