Skip to content

Commit 30c0e77

Browse files
author
Andreas Litt
committed
Fixed little bug in GUI.
1 parent 832ee2c commit 30c0e77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/extjs/extjs.addons.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Ext.ux.grid.ContentColumn = Ext.extend(Ext.grid.Column, {
8585
renderer : function(v, p, record) {
8686
var value = '';
8787
for(key in v) {
88-
value += v[key].value;
88+
value += ' ' + v[key].value;
8989
}
9090
value = Ext.util.Format.trim(value);
9191
return value;

0 commit comments

Comments
 (0)