From daf5fc83d8167ce2718cdb0bce68d938acf48d1e Mon Sep 17 00:00:00 2001 From: Slava Nossar Date: Fri, 22 Jul 2022 17:53:58 +1000 Subject: [PATCH] update test data --- test/fields/collections/Tabs/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/fields/collections/Tabs/index.ts b/test/fields/collections/Tabs/index.ts index 808f672ca..dec53e377 100644 --- a/test/fields/collections/Tabs/index.ts +++ b/test/fields/collections/Tabs/index.ts @@ -94,7 +94,7 @@ const TabsFields: CollectionConfig = { { name: 'tab', label: 'Tab with Name', - description: 'This tab has a name, which should namespace the contained field.', + description: 'This tab has a name, which should namespace the contained fields.', fields: [ { name: 'array', @@ -151,7 +151,7 @@ const TabsFields: CollectionConfig = { { name: 'nestedTab', label: 'Nested Tab with Name', - description: 'This tab has a name, which should namespace the contained field.', + description: 'This tab has a name, which should namespace the contained fields.', fields: [ { name: 'text', @@ -183,21 +183,21 @@ export const tabsDoc = { number: 12, }, nestedTab: { - text: 'Some nested, namespaced text in a tab', + text: 'Some text in a nested, named tab', }, tab: { array: [ { - text: "Hello, I'm the first row", + text: "Hello, I'm the first row, in a named tab", }, { - text: 'Second row here', + text: 'Second row here, in a named tab', }, { - text: 'Here is some data for the third row', + text: 'Here is some data for the third row, in a named tab', }, ], - text: 'Some namespaced text in a tab', + text: 'Some text in a named tab', }, textarea: 'Here is some text that goes in a textarea', anotherText: 'Super tired of writing this text',