Commit 3d6c9783 authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Fix activeFile watcher destruction in repo_store setAcriveFile

parent 61d3e253
...@@ -113,7 +113,7 @@ const RepoStore = { ...@@ -113,7 +113,7 @@ const RepoStore = {
}, },
setActiveFile(activeFile, i) { setActiveFile(activeFile, i) {
RepoStore.activeFile = activeFile; RepoStore.activeFile = Object.assign({}, RepoStore.activeFile, activeFile);
RepoStore.activeFileIndex = i; RepoStore.activeFileIndex = i;
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment