Skip to content

Commit

Permalink
Move createInnerBlockList into editor/utils
Browse files Browse the repository at this point in the history
  • Loading branch information
noisysocks committed Mar 14, 2018
1 parent 4025b7a commit 3f0180c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion editor/components/block-list/block.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import BlockInsertionPoint from './insertion-point';
import IgnoreNestedEvents from './ignore-nested-events';
import InserterWithShortcuts from '../inserter-with-shortcuts';
import Inserter from '../inserter';
import { createInnerBlockList } from './utils';
import { createInnerBlockList } from '../../utils/block-list';
import {
editPost,
insertBlocks,
Expand Down
2 changes: 1 addition & 1 deletion editor/components/block-preview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { createBlock, BlockEdit } from '@wordpress/blocks';
/**
* Internal dependencies
*/
import { createInnerBlockList } from '../block-list/utils';
import { createInnerBlockList } from '../../utils/block-list';
import './style.scss';

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Component } from '@wordpress/element';
/**
* Internal dependencies
*/
import BlockList from './';
import BlockList from '../components/block-list';

/**
* An object of cached BlockList components
Expand Down

0 comments on commit 3f0180c

Please sign in to comment.