mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-22 15:15:12 +08:00
feat(plugin): don't show isHiddenOnPluginsPage
This commit is contained in:
parent
3c0c0cde67
commit
08d9bfc334
2 changed files with 3 additions and 2 deletions
|
@ -196,7 +196,8 @@ const PackagesStore = Reflux.createStore({
|
|||
}
|
||||
|
||||
const available = NylasEnv.packages.getAvailablePackageMetadata();
|
||||
const examples = available.filter(({isOptional}) => isOptional);
|
||||
const examples = available.filter(({isOptional, isHiddenOnPluginsPage}) =>
|
||||
isOptional && !isHiddenOnPluginsPage);
|
||||
packages.example = examples.map((pkg) =>
|
||||
_.extend({}, pkg, {installed: true, category: 'example'})
|
||||
);
|
||||
|
|
2
src/pro
2
src/pro
|
@ -1 +1 @@
|
|||
Subproject commit 7d17675c46475f8ec01acfb37fdb7c1dd84ebe7d
|
||||
Subproject commit 37dc3872e57ba686d63e412358273248e1a3820b
|
Loading…
Reference in a new issue