File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
library-authoring/collections Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ const LibraryCollectionPage = () => {
157
157
canEditLibrary = { libraryData . canEditLibrary }
158
158
infoClickHandler = { openCollectionInfoSidebar }
159
159
/>
160
- ) }
160
+ ) }
161
161
breadcrumbs = { (
162
162
< Breadcrumb
163
163
ariaLabel = { intl . formatMessage ( messages . breadcrumbsAriaLabel ) }
Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ export const SearchContextProvider: React.FC<{
116
116
const sort : SearchSortOption [ ] = ( searchSortOrderToUse === SearchSortOption . RELEVANCE ? [ ] : [ searchSortOrderToUse ] ) ;
117
117
// Selecting SearchSortOption.RECENTLY_PUBLISHED also excludes unpublished components.
118
118
if ( searchSortOrderToUse === SearchSortOption . RECENTLY_PUBLISHED ) {
119
- // pushing to array leads to duplicate values if props.extraFilter is already an array.
120
119
extraFilter = union ( extraFilter , [ 'last_published IS NOT NULL' ] ) ;
121
120
}
122
121
You can’t perform that action at this time.
0 commit comments