fix(ui/kapacitor): layout Send Test Alert button

pull/5771/head
Pavel Zavora 2021-06-14 07:50:07 +02:00
parent a32fe00d05
commit bfcc53a4f7
1 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@ const HandlerActions: FC<{
onTest: () => void
validationError: string
}> = ({onGoToConfig, onTest, validationError}) => (
<>
<div style={{display: 'flex'}}>
<div
className="btn btn-primary"
className="btn btn-primary btn-sm"
onClick={e => {
e.preventDefault()
onTest()
@ -22,6 +22,6 @@ const HandlerActions: FC<{
? 'Exit this Rule and Edit Configuration'
: 'Save this Rule and Edit Configuration'}
</div>
</>
</div>
)
export default HandlerActions