1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-07-31 04:20:26 +02:00

Fix stupid error in recursive normalize calls

This commit is contained in:
Samy Pesse
2016-10-23 01:12:44 +02:00
parent d2850870e3
commit 1689e6408a

View File

@@ -74,7 +74,7 @@ function _normalizeNodeWith(transform, schema, node) {
return transform
}
return normalizeNodeWith(transform, schema, newNode)
return _normalizeNodeWith(transform, schema, newNode)
}
/**