Lots of fixes - see trello (#347)

* A ton of fixes

* Fix project deletion message
This commit is contained in:
Geometrically
2022-01-28 18:11:34 -07:00
committed by GitHub
parent 643cd87706
commit 86f37863a7
25 changed files with 1132 additions and 741 deletions

View File

@@ -1,7 +1,7 @@
export default function (to, from, savedPosition) {
if (to.name.startsWith('type-id') && !from.name.startsWith('type-id')) {
return { x: 0, y: 0 }
} else {
if (to.name.startsWith('type-id') && from.name.startsWith('type-id')) {
return savedPosition
} else {
return { x: 0, y: 0 }
}
}