-
Notifications
You must be signed in to change notification settings - Fork 131
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
Fixes odd looking css: in image module everything should be in one row #629
Conversation
Thanks for opening this pull request! This space is protected by our Code of Conduct - and we're here to help. |
dist/PublicLab.Editor.js
Outdated
@@ -370,7 +369,7 @@ function create (options) { | |||
bureaucrat.emit('valid', validFiles); | |||
var form = new FormData(); | |||
Object.keys(o.formData).forEach(function copyFormData(key) { | |||
form[key] = o.formData[key]; | |||
form.append(key, o.formData[key]); |
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.
Ah, was this change from recent uncompiled changes or is it accidentally in dist? Thanks!
@@ -40,3 +40,6 @@ todo.txt | |||
|
|||
# Test output file | |||
_SpecRunner.html | |||
|
|||
.DS_Store |
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.
Nice.
@@ -150,6 +150,7 @@ | |||
.ple-module { | |||
padding: 20px; | |||
border-top: 1px solid #ddd; | |||
display: flex; |
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.
Great!
|
This looks like a syntax error somewhere, causing the whole PL object to not get defined properly. Could it be, somehow? Or might it have failed to fetch a dependency and then caused that error in compilation? |
It has to be unrelated to this PR as it has only minor CSS change. What do you think? |
Very strange. Maybe try rebasing it? |
@jywarren after rebasing, tests pass 🎉 |
Super!!! |
Before:
After: