Skip to content

Commit

Permalink
updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Apr 4, 2020
1 parent d8b0be8 commit 99f504a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export class MlPlugin implements Plugin<MlPluginSetup, MlPluginStart> {
data: pluginsStart.data,
share: pluginsStart.share,
security: pluginsSetup.security,
licensing: pluginsSetup.licensing,
management: pluginsSetup.management,
usageCollection: pluginsSetup.usageCollection,
licenseManagement: pluginsSetup.licenseManagement,
licensing: pluginsSetup.licensing,
home: pluginsSetup.home,
},
{
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const registerFeature = (home: HomePublicPluginSetup) => {
// so the file data visualizer appears to allow people to import data
home.environment.update({ ml: true });

// register ML to appear on the app list
// register ML so it appears on the Kibana home page
home.featureCatalogue.register({
id: PLUGIN_ID,
title: i18n.translate('xpack.ml.machineLearningTitle', {
Expand Down
3 changes: 2 additions & 1 deletion x-pack/plugins/transform/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
} from '../../../../src/plugins/home/public';

export const registerFeature = (home: HomePublicPluginSetup) => {
// register Transforms so it appears on the Kibana home page
home.featureCatalogue.register({
id: 'transform',
title: i18n.translate('xpack.transform.transformsTitle', {
Expand All @@ -20,7 +21,7 @@ export const registerFeature = (home: HomePublicPluginSetup) => {
defaultMessage:
'Use transforms to pivot existing Elasticsearch indices into summarized or entity-centric indices.',
}),
icon: 'managementApp',
icon: 'managementApp', // there is currently no Transforms icon, so using the general management app icon
path: '/app/kibana#/management/elasticsearch/transform',
showOnHomePage: true,
category: FeatureCatalogueCategory.ADMIN,
Expand Down

0 comments on commit 99f504a

Please sign in to comment.