Skip to content

Commit

Permalink
fix: alert edit using metrics view name instead of explore name (#6251)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaHegde authored Dec 11, 2024
1 parent 8116696 commit c262763
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web-common/src/features/alerts/EditAlertForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
{ query: { queryClient } },
);
$: exploreName = getExploreName(alertSpec.annotations?.web_open_path ?? "");
const exploreName = getExploreName(
alertSpec.annotations?.web_open_path ?? "",
);
const formState = createForm<AlertFormValues>({
initialValues: {
Expand Down

1 comment on commit c262763

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.