From cbae85fa518ffc1b561bea21c8386dad04705b31 Mon Sep 17 00:00:00 2001 From: ghalestrilo Date: Thu, 13 Aug 2020 16:17:23 -0300 Subject: [PATCH] :lipstick: reduce '# sketches' to 'Sketches' on collections list --- client/modules/IDE/components/CollectionList/CollectionList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/modules/IDE/components/CollectionList/CollectionList.jsx b/client/modules/IDE/components/CollectionList/CollectionList.jsx index 9b9b3807..1007ca97 100644 --- a/client/modules/IDE/components/CollectionList/CollectionList.jsx +++ b/client/modules/IDE/components/CollectionList/CollectionList.jsx @@ -145,7 +145,7 @@ class CollectionList extends React.Component { {this._renderFieldHeader('name', 'Name')} {this._renderFieldHeader('createdAt', `${mobile ? '' : 'Date '}Created`)} {this._renderFieldHeader('updatedAt', `${mobile ? '' : 'Date '}Updated`)} - {this._renderFieldHeader('numItems', '# sketches')} + {this._renderFieldHeader('numItems', mobile ? 'Sketches' : '# sketches')}