File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
packages/decap-cms-core/src/components/Collection/Entries Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ coverage/
2020.temp /
2121storybook-static /
2222.nx
23+ .claude /settings.local.json
Original file line number Diff line number Diff line change @@ -173,13 +173,15 @@ class EntryListing extends React.Component {
173173 ) ;
174174 } ) ;
175175
176- return [
177- ...publishedCards . toArray ( ) ,
178- < SectionSeparator key = "separator" >
179- < SectionHeading > { t ( 'collection.entries.unpublishedHeader' ) } </ SectionHeading >
180- </ SectionSeparator > ,
181- ...unpublishedCards . toArray ( ) ,
182- ] ;
176+ return (
177+ < React . Fragment >
178+ { publishedCards }
179+ < SectionSeparator key = "separator" >
180+ < SectionHeading > { t ( 'collection.entries.unpublishedHeader' ) } </ SectionHeading >
181+ </ SectionSeparator >
182+ { unpublishedCards }
183+ </ React . Fragment >
184+ ) ;
183185 } ;
184186
185187 renderCardsForMultipleCollections = ( ) => {
You can’t perform that action at this time.
0 commit comments