diff --git a/editor/src/communication/dispatcher.rs b/editor/src/communication/dispatcher.rs index f6d8560551..c41deb3146 100644 --- a/editor/src/communication/dispatcher.rs +++ b/editor/src/communication/dispatcher.rs @@ -330,6 +330,7 @@ mod test { assert_eq!(&layers_after_copy[4], rect_before_copy); assert_eq!(&layers_after_copy[5], ellipse_before_copy); } + #[test] #[ignore] // TODO: Re-enable test, see issue #444 (https://github.com/GraphiteEditor/Graphite/pull/444) /// - create rect, shape and ellipse diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 77d472ad97..2ef8c078d3 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -241,7 +241,7 @@ declare module "@vue/runtime-core" { editor: EditorState; // This must be set to optional because there is a time in the lifecycle of the component where inputManager is undefined. // That's because we initialize inputManager in `mounted()` rather than `data()` since the div hasn't been created yet. - inputManger?: InputManager; + inputManager?: InputManager; } } diff --git a/frontend/src/components/workspace/Workspace.vue b/frontend/src/components/workspace/Workspace.vue index eec1eed2d0..4c709655c2 100644 --- a/frontend/src/components/workspace/Workspace.vue +++ b/frontend/src/components/workspace/Workspace.vue @@ -1,6 +1,6 @@