pull/2969/head
Andrew Watkins 2018-03-13 09:57:23 -07:00
parent 33a4abeea5
commit 0e6f14931b
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import {Kapacitor, Source} from 'src/types'
type FlashMessage = {type: string; text: string}
interface AlertOutPutProps {
interface AlertOutputProps {
exists: boolean
kapacitor: Kapacitor
addFlashMessage: (message: FlashMessage) => void
@ -14,7 +14,7 @@ interface AlertOutPutProps {
hash: string
}
const AlertOutputs: SFC<AlertOutPutProps> = ({
const AlertOutputs: SFC<AlertOutputProps> = ({
exists,
kapacitor,
addFlashMessage,