fix(acp): #9008 undefined link for "no users browsing" state on dashboard

This commit is contained in:
psychobunny
2020-11-30 14:07:28 -05:00
parent 286243cd37
commit 54dc449fb9

View File

@@ -526,9 +526,8 @@ define('admin/dashboard', ['Chart', 'translator', 'benchpress'], function (Chart
var legend = $('#topics-legend').html('');
var html = '';
topics.forEach(function (t, i) {
var label = t.count === '0' ?
t.title :
'<a title="' + t.title + '"href="' + config.relative_path + '/topic/' + t.tid + '" target="_blank"> ' + t.title + '</a>';
var link = t.tid ? '<a title="' + t.title + '"href="' + config.relative_path + '/topic/' + t.tid + '" target="_blank"> ' + t.title + '</a>' : t.title;
var label = t.count === '0' ? t.title : link;
html += '<li>' +
'<div style="background-color: ' + topicColors[i] + ';"></div>' +