Style "no associated kapacitor" error

pull/10616/head
Alex P 2017-06-14 17:35:33 -07:00
parent 8b7cbcc1ed
commit c98a55062f
1 changed files with 6 additions and 4 deletions

View File

@ -11,12 +11,14 @@ const NoKapacitorError = React.createClass({
render() { render() {
const path = `/sources/${this.props.source.id}/kapacitors/new` const path = `/sources/${this.props.source.id}/kapacitors/new`
return ( return (
<div> <div className="graph-empty">
<p> <p>
The current source does not have an associated Kapacitor instance, The current source does not have an associated Kapacitor instance
please configure one. <br /><br />
<Link to={path} className="btn btn-sm btn-primary">
Configure Kapacitor
</Link>
</p> </p>
<Link to={path}>Add Kapacitor</Link>
</div> </div>
) )
}, },