mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 05:58:41 -09:00
fixing syntax error 'missing parenthesis' on ui.js when running 'npm run dev' (#353)
This commit is contained in:
parent
b4dabfd94a
commit
0c3d25dd19
1 changed files with 1 additions and 1 deletions
|
|
@ -127,7 +127,7 @@ const reducer = (state = initial, action) => {
|
||||||
ret.colors = config.colors;
|
ret.colors = config.colors;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (JSON.stringify(state.colors) !== JSON.stringify(config.colors) {
|
if (JSON.stringify(state.colors) !== JSON.stringify(config.colors)) {
|
||||||
ret.colors = config.colors;
|
ret.colors = config.colors;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue