diff --git a/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx b/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx index 75ba970874e3..a7b78de39a32 100644 --- a/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx +++ b/superset-frontend/src/views/CRUD/annotationlayers/AnnotationLayerModal.tsx @@ -29,6 +29,7 @@ import { AnnotationLayerObject } from './types'; interface AnnotationLayerModalProps { addDangerToast: (msg: string) => void; + addSuccessToast: (msg: string) => void; layer?: AnnotationLayerObject | null; onLayerAdd?: (layer?: AnnotationLayerObject) => void; onHide: () => void; @@ -80,6 +81,7 @@ const LayerContainer = styled.div` const AnnotationLayerModal: FunctionComponent = ({ addDangerToast, + addSuccessToast, onLayerAdd, onHide, show, @@ -134,6 +136,7 @@ const AnnotationLayerModal: FunctionComponent = ({ } hide(); + addSuccessToast(t('Annotation template updated')); }); } } else if (currentLayer) { @@ -148,6 +151,7 @@ const AnnotationLayerModal: FunctionComponent = ({ } hide(); + addSuccessToast(t('Annotation template created')); }); } };