1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-04-05 22:12:49 +02:00

Fix forgotten props 'block' for Leaf (#707)

This commit is contained in:
Aliaksei Simanchyk 2017-04-03 19:26:58 +03:00 committed by Ian Storm Taylor
parent 7b4beffabf
commit affb2eb56a

View File

@ -152,7 +152,7 @@ class Void extends React.Component {
*/
renderLeaf = () => {
const { node, schema, state, editor } = this.props
const { block, node, schema, state, editor } = this.props
const child = node.getFirstText()
const ranges = child.getRanges()
const text = ''
@ -167,6 +167,7 @@ class Void extends React.Component {
return (
<Leaf
key={offsetKey}
block={block}
editor={editor}
index={index}
marks={marks}