-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Work in progress: Implement MIN_CANVAS_SPACE #799
Conversation
The test failure is something I get regularly, and seems to be a glitch. Re-running the failed job usually succeeds. Do you have a clue what could be causing it? |
src/fontra/views/editor/editor.js
Outdated
@@ -54,7 +55,7 @@ import { | |||
import { staticGlyphToGLIF } from "../core/glyph-glif.js"; | |||
import { pathToSVG } from "../core/glyph-svg.js"; | |||
import { parseClipboard } from "../core/server-utils.js"; | |||
import Sidebar from "./sidebar.js"; | |||
import Sidebar, { MAX_SIDEBAR_WIDTH, MIN_SIDEBAR_WIDTH } from "./sidebar.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we turn Sidebar
into a "regular" export, instead of a default export? I would love the import line to read like this:
import Sidebar, { MAX_SIDEBAR_WIDTH, MIN_SIDEBAR_WIDTH } from "./sidebar.js"; | |
import { Sidebar, MAX_SIDEBAR_WIDTH, MIN_SIDEBAR_WIDTH } from "./sidebar.js"; |
Unit tests? Usually arrayExtend fails. I will try to understand next time it fails. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Fixes #786.