diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index 8486d91d5d..484b4eb204 100644 --- a/src/app/components/plugin-manager-component.js +++ b/src/app/components/plugin-manager-component.js @@ -141,7 +141,7 @@ class PluginManagerComponent extends ViewPlugin { render () { // Filtering helpers - const isFiltered = (api) => api.displayName.toLowerCase().includes(this.filter) + const isFiltered = (api) => (api.profile.displayName ? api.profile.displayName : api.name).toLowerCase().includes(this.filter) const isNotRequired = ({profile}) => !this.appManager.isRequired(profile.name) const isNotHome = ({profile}) => profile.name !== 'home' const sortByName = (a, b) => {