diff --git a/static/js/gridView.js b/static/js/gridView.js index 8ed4e0f..ff7653c 100644 --- a/static/js/gridView.js +++ b/static/js/gridView.js @@ -16,7 +16,7 @@ oml.ui.gridView = function() { width = Math.round(ratio >= 1 ? size : size * ratio), height = Math.round(ratio <= 1 ? size : size / ratio), sortKey = sort[0].key, - info = Ox.isNull(data[sortKey]) + info = Ox.isNull(data[sortKey]) || Ox.isUndefined(data[sortKey]) ? '' : Ox.contains(['title', 'random'], sortKey) ? (data.author || []).join(', ')