don't return empty string for undefined values, handle in context browser
This commit is contained in:
parent
0504eaf227
commit
5da83f6f6d
2 changed files with 5 additions and 3 deletions
|
|
@ -88,7 +88,9 @@ pandora.ui.browser = function() {
|
|||
} else {
|
||||
// fixme: this is duplicated many times
|
||||
format = pandora.getSortKeyData(sortKey).format;
|
||||
if (format) {
|
||||
if (Ox.isUndefined(data[sortKey]) || Ox.isNull(data[sortKey])) {
|
||||
info = '';
|
||||
} else if (format) {
|
||||
info = (
|
||||
/^color/.test(format.type.toLowerCase()) ? Ox.Theme : Ox
|
||||
)['format' + Ox.toTitleCase(format.type)].apply(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue