From 5d094e4fe8f7dcfc76af304d97172b78b41b8b87 Mon Sep 17 00:00:00 2001 From: Oleksii Dykan Date: Fri, 15 Jun 2018 11:40:41 +0100 Subject: [PATCH] Fix CKFlexboxSpacing --- website/src/components/Playground/CodeComponentKit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/Playground/CodeComponentKit.js b/website/src/components/Playground/CodeComponentKit.js index fea711af..0da0f13d 100644 --- a/website/src/components/Playground/CodeComponentKit.js +++ b/website/src/components/Playground/CodeComponentKit.js @@ -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])},`); }