diff options
author | Nick Coutsos <[email protected]> | 2021-10-16 14:18:05 -0400 |
---|---|---|
committer | Nick Coutsos <[email protected]> | 2021-10-16 14:18:05 -0400 |
commit | 5ac41b2ca7e0482c3f27c85b3de7ff3e814e8718 (patch) | |
tree | ce2da765f67b0386e339d49396c67659e37f5d56 /application | |
parent | 5b1b0dfa1f0d377a4f4ca67870a25e6851741886 (diff) | |
download | keymap-editor-5ac41b2ca7e0482c3f27c85b3de7ff3e814e8718.tar.gz keymap-editor-5ac41b2ca7e0482c3f27c85b3de7ff3e814e8718.zip |
Fix error for unauthorized state
Diffstat (limited to 'application')
-rw-r--r-- | application/components/app.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/components/app.vue b/application/components/app.vue index a6d3cb1..8322327 100644 --- a/application/components/app.vue +++ b/application/components/app.vue @@ -56,6 +56,8 @@ export default { loadKeymap() ]) return { layout, keymap } + } else { + return { layout: [], keymap: { layers: [] } } } } |