-
Notifications
You must be signed in to change notification settings - Fork 427
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
Fix various editor bugs and upgrade latest Slate packages #1189
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
skogsmaskin
force-pushed
the
fix-block-editor-paste-bug
branch
2 times, most recently
from
January 30, 2019 15:05
ce11df3
to
7a89d6f
Compare
skogsmaskin
changed the title
Fix block editor paste bug
Fix block editor paste / patching bug
Jan 30, 2019
skogsmaskin
force-pushed
the
fix-block-editor-paste-bug
branch
4 times, most recently
from
January 31, 2019 13:05
41d8718
to
34d6b10
Compare
… a set patch Also some code paths optimizations.
skogsmaskin
force-pushed
the
fix-block-editor-paste-bug
branch
from
January 31, 2019 13:08
34d6b10
to
676c65d
Compare
bjoerge
approved these changes
Jan 31, 2019
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.
LGTM
skogsmaskin
changed the title
Fix block editor paste / patching bug
Fix various block editor bugs and upgrade to latest Slate packages
Jan 31, 2019
skogsmaskin
changed the title
Fix various block editor bugs and upgrade to latest Slate packages
Fix various editor bugs and upgrade to latest Slate packages
Jan 31, 2019
skogsmaskin
changed the title
Fix various editor bugs and upgrade to latest Slate packages
Fix various editor bugs and upgrade latest Slate packages
Jan 31, 2019
skogsmaskin
added a commit
that referenced
this pull request
Jan 31, 2019
…1189) * [form-builder] Block editor: Prettier fix for Syncwrapper * [form-builder] Block editor: remove unused import * [form-builder] Block editor: add patching test * [form-builder] Block editor: setIfMissing patches must be followed by set * [form-builder] Block editor: fix invalid return values * [form-builder] Block editor: fix triple click bug * [form-builder] Block editor: upgrade slate packages
bjoerge
pushed a commit
that referenced
this pull request
Feb 1, 2019
…1189) * [form-builder] Block editor: Prettier fix for Syncwrapper * [form-builder] Block editor: remove unused import * [form-builder] Block editor: add patching test * [form-builder] Block editor: setIfMissing patches must be followed by set * [form-builder] Block editor: fix invalid return values * [form-builder] Block editor: fix triple click bug * [form-builder] Block editor: upgrade slate packages
bjoerge
pushed a commit
that referenced
this pull request
Feb 1, 2019
…1189) * [form-builder] Block editor: Prettier fix for Syncwrapper * [form-builder] Block editor: remove unused import * [form-builder] Block editor: add patching test * [form-builder] Block editor: setIfMissing patches must be followed by set * [form-builder] Block editor: fix invalid return values * [form-builder] Block editor: fix triple click bug * [form-builder] Block editor: upgrade slate packages
Merged
skogsmaskin
added a commit
that referenced
this pull request
Feb 1, 2019
…1189) * [form-builder] Block editor: Prettier fix for Syncwrapper * [form-builder] Block editor: remove unused import * [form-builder] Block editor: add patching test * [form-builder] Block editor: setIfMissing patches must be followed by set * [form-builder] Block editor: fix invalid return values * [form-builder] Block editor: fix triple click bug * [form-builder] Block editor: upgrade slate packages
bjoerge
pushed a commit
that referenced
this pull request
Aug 13, 2019
…1189) * [form-builder] Block editor: Prettier fix for Syncwrapper * [form-builder] Block editor: remove unused import * [form-builder] Block editor: add patching test * [form-builder] Block editor: setIfMissing patches must be followed by set * [form-builder] Block editor: fix invalid return values * [form-builder] Block editor: fix triple click bug * [form-builder] Block editor: upgrade slate packages
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a bug when pasting something into a new and empty editor field because
setIfMissing
patches was not followed by theset
patches. This lead to twosetIfMissing
patches where the last one didn't apply anything.This is fixed in commit 676c65d
Also added a test, and did a minor code hygiene (own commits).