fix text align example

This commit is contained in:
Philipp Kühn
2018-10-30 00:00:08 +01:00
parent e608808c27
commit bed5e6bb83

View File

@@ -27,8 +27,8 @@ export default class Paragraph extends Node {
} }
} }
command({ type, attrs }) { commands({ type }) {
return setBlockType(type, attrs) return attrs => setBlockType(type, attrs)
} }
} }