-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[ML] Adds an AI section into Stack Management
#227289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b6fae2e
75f8317
f5530ba
8606b9e
b187adb
cdcd060
5070880
d2e026a
6629f62
c4ba2a8
981d735
5d70632
07d9b33
8f0153d
57f09cc
64775c1
0eb441e
d680222
6901bd1
5095cbc
43919e5
b9e5047
d74300e
f94b017
3f8b364
965e70f
810fdb4
41f5fe4
34cc40d
5e65aa1
d5ed534
f7b86bc
220a491
31fb003
623392d
4ff581a
4e6a74e
d1d6b65
bed9072
1272f6a
2bad0da
3086851
d80fece
070852c
17efeec
bab6ef4
8344dce
ac194c6
84f227a
033e684
536000b
3b4781c
7891b26
fd6f444
80471ad
599011e
8eb6afb
1eacb02
b7ed808
fc0591f
116afcb
f623a9d
d8f0b0f
a65a2b6
a2ab64b
469736c
534e673
8446cbd
556f875
8da509d
3d57380
5403268
d04111a
bcfd1d3
252afdc
35c18e5
a253c7d
39b1bf9
c7c48d0
74e1628
71f17cc
325df14
574e2a0
9d26a68
ca50eaf
cc08d9e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,6 +58,10 @@ const kibanaTip = i18n.translate('management.sections.kibanaTip', { | |
| defaultMessage: 'Customize Kibana and manage saved objects', | ||
| }); | ||
|
|
||
| const aiTitle = i18n.translate('management.sections.aiTitle', { | ||
| defaultMessage: 'AI', | ||
| }); | ||
|
|
||
| const stackTitle = i18n.translate('management.sections.stackTitle', { | ||
| defaultMessage: 'Stack', | ||
| }); | ||
|
|
@@ -108,6 +112,12 @@ export const KibanaSection = { | |
| order: 4, | ||
| }; | ||
|
|
||
| export const AISection = { | ||
| id: ManagementSectionId.AI, | ||
| title: aiTitle, | ||
| order: 4, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the PR screenshoots the section includes the tooltip icon but it's not added here. I think it would be nice include a tip with something like 'Manage your AI models and settings' or something similar (double check with docs)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 for adding an info tooltip for the AI section.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We initially decided to skip the tip, @isaclfreire WDYT? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I missed this. Looks good to me. |
||
| }; | ||
|
|
||
| export const StackSection = { | ||
| id: ManagementSectionId.Stack, | ||
| title: stackTitle, | ||
|
|
@@ -122,5 +132,6 @@ export const managementSections = [ | |
| MachineLearningSection, | ||
| SecuritySection, | ||
| KibanaSection, | ||
| AISection, | ||
| StackSection, | ||
| ]; | ||
Uh oh!
There was an error while loading. Please reload this page.