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:
@@ -74,7 +74,7 @@ function _normalizeNodeWith(transform, schema, node) {
|
||||
return transform
|
||||
}
|
||||
|
||||
return normalizeNodeWith(transform, schema, newNode)
|
||||
return _normalizeNodeWith(transform, schema, newNode)
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user