Skip to content
Snippets Groups Projects
Commit 2e13137c authored by Adam Procter's avatar Adam Procter
Browse files

bug fix for n shortcut

parent afbb54a4
No related branches found
No related tags found
No related merge requests found
No preview for this file type
# 0.1.46
_18th Decemeber 2020_
### Fixed
- The initial onboarding microcosm should not longer allow you to save nodes.
- Keyboard shortcut n now works on Collect view on first visit to new microcosm.
# 0.1.45
_17th December 2020_
......@@ -9,7 +18,6 @@ _17th December 2020_
### Fixed
- Some sync bug fixes.
- The initial onboarding microcosm should not longer allow you to save nodes.
- You can now colour nodes in Collect and Card views.
- initial node creation failed on new microcosm without switching views.
- Force load on Collect view.
......
{
"name": "nodenogg.in",
"version": "0.1.45",
"version": "0.1.46",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
......
......@@ -98,8 +98,7 @@ export default {
},
mounted() {
var e = false
this.$store.dispatch('shortcutState', e)
setTimeout(this.loadShortcut, 1000)
},
beforeDestroy() {
......@@ -109,11 +108,17 @@ export default {
},
methods: {
loadShortcut() {
var e = false
this.$store.dispatch('shortcutState', e)
},
clientAdded() {
this.clientset = !this.clientset
},
addNode() {
// console.log('add called')
this.$store.dispatch('addNode')
this.added = !this.added
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment