From 46c4a412cc95c55174e458839b42e52c0578b5b1 Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Wed, 28 Aug 2019 13:11:53 +0200 Subject: [PATCH] updated search to filter with displayName --- src/app/components/plugin-manager-component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index bd22846de9..8486d91d5d 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.name.toLowerCase().includes(this.filter) + const isFiltered = (api) => api.displayName.toLowerCase().includes(this.filter) const isNotRequired = ({profile}) => !this.appManager.isRequired(profile.name) const isNotHome = ({profile}) => profile.name !== 'home' const sortByName = (a, b) => {