mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 05:55:48 +01:00
closes #2276
This commit is contained in:
@@ -359,7 +359,7 @@ define('admin/general/dashboard', ['semver'], function(semver) {
|
|||||||
segments = graphs.topics.segments;
|
segments = graphs.topics.segments;
|
||||||
|
|
||||||
function reassignExistingTopics() {
|
function reassignExistingTopics() {
|
||||||
for (var i = 0, ii = segments.length; i < ii; i++ ) {
|
for (var i = segments.length - 1; i >= 0; i--) {
|
||||||
if (!segments[i]) {
|
if (!segments[i]) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user