Skip to content

Commit

Permalink
fix: bug alert history is not working trailing / (#2455)
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren authored Nov 12, 2024
1 parent 4abc159 commit 689cacf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keep-ui/app/providers/provider-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ const ProviderForm = ({
);
} else if (updatedFormErrors.includes("Failed to fetch")) {
setFormErrors(
"Failed to connect to API: Check your internet connection"
"Failed to connect to API: Check provider settings and your internet connection"
);
} else {
setFormErrors(updatedFormErrors);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const CorrelationSidebarHeader = ({
{isRuleBeingEdited ? "Edit" : "Create"} Correlation
</Dialog.Title>
<Dialog.Description as={Subtitle}>
Group multiple alerts into single alert
Group multiple alerts into a single incident
</Dialog.Description>
</div>
<div>
Expand Down
2 changes: 1 addition & 1 deletion keep-ui/utils/hooks/useAlerts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const useAlerts = () => {
selectedAlert && session
? `${apiUrl}/alerts/${
selectedAlert.fingerprint
}/history/?provider_id=${selectedAlert.providerId}&provider_type=${
}/history?provider_id=${selectedAlert.providerId}&provider_type=${
selectedAlert.source ? selectedAlert.source[0] : ""
}`
: null,
Expand Down

0 comments on commit 689cacf

Please sign in to comment.