Chore: Fix typo in template not found error message (#83778)

pull/83797/head
Santiago 1 year ago committed by GitHub
parent 8ad367e4ad
commit 2964901ea6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/app/features/alerting/unified/components/receivers/DuplicateTemplateView.tsx
  2. 2
      public/app/features/alerting/unified/components/receivers/EditTemplateView.tsx

@ -20,7 +20,7 @@ export const DuplicateTemplateView = ({ config, templateName, alertManagerSource
if (!template) {
return (
<Alert severity="error" title="Template not found">
Sorry, this template does not seem to exists.
Sorry, this template does not seem to exist.
</Alert>
);
}

@ -18,7 +18,7 @@ export const EditTemplateView = ({ config, templateName, alertManagerSourceName
if (!template) {
return (
<Alert severity="error" title="Template not found">
Sorry, this template does not seem to exists.
Sorry, this template does not seem to exist.
</Alert>
);
}

Loading…
Cancel
Save