未验证 提交 6bec91bf 编写于 作者: P Phil Hughes

fixed karma

上级 029f7e6c
......@@ -8,7 +8,9 @@ export default {
if (active && !state.entries[path].pending) {
Object.assign(state, {
openFiles: state.openFiles.map(f => Object.assign(f, { active: !(f.pending && f.active) })),
openFiles: state.openFiles.map(f =>
Object.assign(f, { active: f.pending ? false : f.active }),
),
});
}
},
......
......@@ -27,6 +27,7 @@ describe('Multi-file store file mutations', () => {
localState.openFiles.push({
...localFile,
pending: true,
active: true,
});
mutations.SET_FILE_ACTIVE(localState, {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册