Fixes a weird extra "S" next to our logo (#27871)

* Kibana core gets confused when a euiIconType is used but not a regular icon
* Workaround/fix is to add a icon label even if just using a pure euiIconType
* https://github.com/elastic/ingest-dev/issues/188
This commit is contained in:
Frank Hassanabad 2019-01-02 10:08:12 -07:00 committed by GitHub
parent cdbe3784ca
commit b678c382c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,7 @@ export function secops(kibana: any) {
app: {
description: 'Explore your security operations',
main: 'plugins/secops/app',
icon: 'plugins/secops/images/security_app.svg', // TODO: Use real SVG for logo (this is a fake url)
euiIconType: 'securityApp',
title: 'Sec Ops',
listed: false,
@ -31,6 +32,7 @@ export function secops(kibana: any) {
links: [
{
description: 'Explore your security operations',
icon: 'plugins/secops/images/security_app.svg', // TODO: Use real SVG for logo (this is a fake url)
euiIconType: 'securityApp',
id: 'secops',
order: 9000,