-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Alerting] Implemented ability to edit an alert from the alert details page #64273
[Alerting] Implemented ability to edit an alert from the alert details page #64273
Conversation
Pinging @elastic/kibana-alerting-services (Team:Alerting Services) |
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 and works as advertised :)
const alert = await alerting.alerts.createAlertWithActions( | ||
testRunUuid, | ||
'.index-threshold', | ||
params | ||
); |
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.
Good approach, should definitely speed things up. 👍
…button-from-details # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
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! 👍
There's a bug in the UI if you change values, cancel and re-open the edit flyout, the values don't clear. Similar to #60328.
Yeah, it should be fixed by the same PR. |
…s page (elastic#64273) * Implemented ability to edit an alert from the alert details page * Fixed refresh and tests * fixed jest tests
…s page (elastic#64273) * Implemented ability to edit an alert from the alert details page * Fixed refresh and tests * fixed jest tests
…s page (elastic#64273) * Implemented ability to edit an alert from the alert details page * Fixed refresh and tests * fixed jest tests # Conflicts: # x-pack/plugins/triggers_actions_ui/public/application/sections/alert_details/components/alert_instances_route.tsx # x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts
…s page (elastic#64273) * Implemented ability to edit an alert from the alert details page * Fixed refresh and tests * fixed jest tests # Conflicts: # x-pack/plugins/triggers_actions_ui/public/application/sections/alert_details/components/alert_instances_route.tsx # x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts
Added Edit button on Alert detail page (visible if there are save capabilities):
which open edit alert flyout:
Resolve #61017