We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6923a7b commit 59ecf97Copy full SHA for 59ecf97
src/components/library/library.jsx
@@ -255,7 +255,8 @@ class LibraryComponent extends React.Component {
255
}
256
createFilteredData () {
257
const data = [].concat(
258
- this.state.data,
+ this.custom_extensions,
259
+ this.state.data
260
);
261
262
const no_tags = this.state.selectedTags.length === 0;
@@ -292,7 +293,6 @@ class LibraryComponent extends React.Component {
292
293
294
295
const fully_filtered = [].concat(
- this.custom_extensions,
296
filtered.filter(item => (this.state.favorites.includes(item.extensionId))),
297
filtered.filter(item => (!this.state.favorites.includes(item.extensionId)))
298
).map(item => Object.assign(item, { custom: !!item.custom }));
0 commit comments