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() {
const path = `/sources/${this.props.source.id}/kapacitors/new`
return (
<div>
<div className="graph-empty">
<p>
The current source does not have an associated Kapacitor instance,
please configure one.
The current source does not have an associated Kapacitor instance
<br /><br />
<Link to={path} className="btn btn-sm btn-primary">
Configure Kapacitor
</Link>
</p>
<Link to={path}>Add Kapacitor</Link>
</div>
)
},