-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[ML] Modifies page title to Create job #70191
Conversation
Pinging @elastic/ml-ui (:ml) |
@@ -149,13 +149,13 @@ export const Page: FC<Props> = ({ jobId }) => { | |||
{jobId === undefined && ( | |||
<FormattedMessage | |||
id="xpack.ml.dataframe.analytics.creationPageTitle" | |||
defaultMessage="Create analytics job" | |||
defaultMessage="Create data frame analytics job" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if we need the full Create data frame analytics job
text here, or if just Create job
is enough? Do the breadcrumbs provide sufficient context that we are creating a data frame analytics job?
In the anomaly detection jobs wizard for example, do we need it changed to Create anomaly detection job: Advanced
or is it enough just to use Create job: Advanced
as is used currently.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's a good point that we have two options here: a) use the full name, which is what this PR currently proposes, or (b) use the really short name and align with what we do in anomaly detection. I think both of these options are valid, the conciseness of (b) is appealing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thanks for raising the question @peteharverson and for your insight @lcawl. My vote goes to the b option, too. I modify the PR accordingly.
x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx
Outdated
Show resolved
Hide resolved
x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_creation/page.tsx
Outdated
Show resolved
Hide resolved
@peteharverson @lcawl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
💛 Build succeeded, but was flaky
Test FailuresKibana Pipeline / kibana-oss-agent / Chrome UI Functional Tests.test/functional/apps/visualize/_tsvb_time_series·ts.visualize app visual builder Time Series should open color picker, deactivate panel and clone seriesStandard Out
Stack Trace
Build metricspage load asset sizebeta
History
To update your PR or re-run it, just comment with: |
* master: [ML] Modifies page title to Create job (elastic#70191) [APM] Add API test for service maps (elastic#70185) [DOCS] Adds glossary to documentation (elastic#69721) [Usage Collection] Report nodes feature usage (elastic#70108) chore: improve support for mjs file extension (elastic#70186) [ML] Anomaly Detection: ensure 'Category examples' tab in the expanded table row can be seen (elastic#70241) [Maps] Add maps telemetry saved object in with mappings disabled (elastic#69995) Fix typo in bootstrap command (elastic#69976) [code coverage] ingest correct coveredFilePath for mocha (elastic#70215) [Dashboard] Add visualization by value to dashboard (elastic#69898) updates wording in Cases connectors (elastic#70298) [ML] Fix license subscription race condition. (elastic#70074) [Logs UI] [Alerting] "Group by" functionality (elastic#68250)
Changes Create data frame analytics job to Create job.
Summary
This PR modifies the title of the DFA job creation page from
Create analytics job
toCreate job
.Before
After
Checklist