added chacke for displayname

pull/1/head
Liana Husikyan 5 years ago committed by GitHub
parent 46c4a412cc
commit 157560d5b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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) => {

Loading…
Cancel
Save