Fix CKFlexboxSpacing

This commit is contained in:
Oleksii Dykan
2018-06-15 11:40:41 +01:00
parent c5f826de83
commit 5d094e4fe8

View File

@@ -165,7 +165,7 @@ function renderKey(node: Yoga$Node, key: string, indent: string): ?string {
);
}
['top', 'left', 'right', 'bottom'].forEach(pKey => {
['top', 'start', 'end', 'bottom'].forEach(pKey => {
if (node[key][pKey]) {
lines.push(indent + `\t.${pKey} = ${getValue(node[key][pKey])},`);
}