Skip to content

Commit 8623c6d

Browse files
author
Melih Korkmaz
committed
Fixed system logs plugin table sorting issue
1 parent 0633478 commit 8623c6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/systemlogs/api/api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var plugin = {},
3030
}
3131
query._id = {$ne:"meta_v2"};
3232
validate(params, function(params){
33-
var columns = ["ts", "u", "a", "ip", "i"];
33+
var columns = ["", "ts", "u", "a", "ip", "i"];
3434
common.db.collection('systemlogs').count({},function(err, total) {
3535
total--;
3636
var cursor = common.db.collection('systemlogs').find(query);

0 commit comments

Comments
 (0)