Skip to content

Commit

Permalink
Fix alert edit using metrics view name
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaHegde committed Dec 11, 2024
1 parent b268f39 commit 026b5a5
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

0 comments on commit 026b5a5

Please sign in to comment.