From b428d7bb7212c0ac2ecbe0d51ea412a184485a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20Melv=C3=A6r?= Date: Fri, 8 Nov 2019 07:50:43 +0100 Subject: [PATCH] Add missing object bracing --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 30c16a1..7ee4f35 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,11 @@ export default { title: 'Product', type: 'document', fields: [ - name: 'sizeChart', - title: 'Size Chart', - type: 'table', // Specify table type + { + name: 'sizeChart', + title: 'Size Chart', + type: 'table', // Specify table type + } ], }; ```