Explorar el Código

Chore: fix prettier error after github suggestions commit (#19150)

Ryan McKinley hace 6 años
padre
commit
383bdb160f
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      public/app/features/alerting/AlertTab.tsx

+ 4 - 1
public/app/features/alerting/AlertTab.tsx

@@ -135,7 +135,10 @@ export class AlertTab extends PureComponent<Props> {
     if (!alert && hasTransformations) {
       return (
         <EditorTabBody heading="Alert">
-          <AlertBox severity={AppNotificationSeverity.Warning} title="Transformations are not supported in alert queries" />
+          <AlertBox
+            severity={AppNotificationSeverity.Warning}
+            title="Transformations are not supported in alert queries"
+          />
         </EditorTabBody>
       );
     }