Skip to content
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

[14494] - Improve e2e testing docs and add cli args #14673

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
No allignment gallery className fix.
  • Loading branch information
nicolad committed Mar 24, 2019
commit 17ab0f25f7b1ab4f411db5e0f3f0c26a2912854e
6 changes: 4 additions & 2 deletions packages/block-library/src/gallery/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,12 @@ class GalleryEdit extends Component {
className={ classnames(
className,
{
[ `align${ align }` ]: align,
[ `columns-${ columns }` ]: columns,
'is-cropped': imageCrop,
}
},
align ? {
[ `align${ align }` ]: align,
} : null
) }
>
{ dropZone }
Expand Down