diff --git a/lib/riemann/dash/public/eventPane.js b/lib/riemann/dash/public/eventPane.js
index ac3b828..2a4a709 100644
--- a/lib/riemann/dash/public/eventPane.js
+++ b/lib/riemann/dash/public/eventPane.js
@@ -5,14 +5,16 @@ var eventPane = (function() {
var fixedFields = ['host', 'service', 'time', 'state', 'metric', 'ttl', 'description', 'tags'];
var fixedTemplate =
_.template(
- '
{{-host}}
' +
- '{{-service}}
' +
- '{{-state}}
' +
- '{{-metric}}
' +
+ '' +
+ '
{{-host}}' +
+ '
{{-service}}' +
+ '
{{-state}}' +
+ '
{{-metric}}' +
'
' +
- '
{{-ttl}}
' +
- '
{{-tags}}
' +
- '
{{-description}}');
+ '{{-ttl}}' +
+ '{{-tags}}' +
+ '
' +
+ '
{{-description}}
');
var rowTemplate =
_.template("
{{-field}} | {{-value}} |
");
diff --git a/lib/riemann/dash/views/css.scss b/lib/riemann/dash/views/css.scss
index a26bbac..fbfd001 100644
--- a/lib/riemann/dash/views/css.scss
+++ b/lib/riemann/dash/views/css.scss
@@ -147,7 +147,6 @@ html,table {
}
* {
- float: left;
padding: 3px;
}
@@ -172,6 +171,7 @@ html,table {
}
.description {
+ float: left;
clear: both;
white-space: pre-wrap;
}