diff --git a/blocks/library/gallery/gallery-image.js b/blocks/library/gallery/gallery-image.js
index d1aa51b1cc47ff..fc7528aaefec48 100644
--- a/blocks/library/gallery/gallery-image.js
+++ b/blocks/library/gallery/gallery-image.js
@@ -3,7 +3,7 @@ export default class GalleryImage extends wp.element.Component {
render() {
return (
-
+
);
}
diff --git a/blocks/library/gallery/index.js b/blocks/library/gallery/index.js
index 2bac363e1b3a54..34e5bb0211657b 100644
--- a/blocks/library/gallery/index.js
+++ b/blocks/library/gallery/index.js
@@ -4,8 +4,8 @@
import './style.scss';
import { registerBlock, query as hpq } from '../../api';
-import Button from 'components/button';
import Placeholder from 'components/placeholder';
+import MediaUploadButton from '../../media-upload-button';
import GalleryImage from './gallery-image';
@@ -22,28 +22,22 @@ registerBlock( 'core/gallery', {
edit( { attributes, setAttributes } ) {
const { images } = attributes;
-
- const canned = [
- { src: 'https://lorempixel.com/240/180', alt: '240x180' },
- { src: 'https://lorempixel.com/244/183', alt: '244x183' },
- { src: 'https://lorempixel.com/248/186', alt: '248x186' },
- { src: 'https://lorempixel.com/252/189', alt: '252x189' },
- { src: 'https://lorempixel.com/256/192', alt: '256x192' },
- { src: 'https://lorempixel.com/260/195', alt: '260x195' },
- { src: 'https://lorempixel.com/264/198', alt: '264x198' },
- { src: 'https://lorempixel.com/268/201', alt: '268x201' },
- ];
-
if ( ! images ) {
+ const setMediaUrl = ( imgs ) => setAttributes( { images: imgs } );
return (
-
+
);
}