FELIX-790 - Use separate columns for property key and value

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@707549 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/res/ui/events.js b/webconsole/src/main/resources/res/ui/events.js
index a743f7d..76c8655 100644
--- a/webconsole/src/main/resources/res/ui/events.js
+++ b/webconsole/src/main/resources/res/ui/events.js
@@ -88,7 +88,8 @@
     tableE.appendChild(bodyE);
 
     for( var p in dataEntry.properties ) {
-    	bodyE.appendChild(tr(null, null, [td(null, null, [text(p + " = " + dataEntry.properties[p])] )]));
+    	bodyE.appendChild(tr(null, null, [td(null, null, [text(p)] ),
+    	                                  td(null, null, [text(dataEntry.properties[p])])]));
     }
     
     parent.appendChild( td( "content", null, [tableE] ) );