Skip to content

Commit c312fac

Browse files
committed
change graph type
1 parent 34029ff commit c312fac

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenFlow/src/DatabaseConnection.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@ export class DatabaseConnection {
327327
// console.log(JSON.stringify(_query, null, 2));
328328
// console.log(arr);
329329

330-
// console.log(JSON.stringify(_query, null, 2));
331330
this._logger.debug("deleting " + id + " in database");
332331
var res: DeleteWriteOpResultObject = await this.db.collection(collectionname).deleteOne(_query);
333332

OpenFlow/src/public/Controllers.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ module openflow {
166166
console.log(userstats);
167167

168168
chart = new chartset();
169-
chart.heading = user.name + " logins per day";
169+
chart.charttype = "line"
170+
chart.heading = user.name + " (" + user.username + ") logins per day";
170171
chart.data = [];
171172
for (var x = 0; x < userstats.length; x++) {
172173
var model = userstats[x].value;

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.90
1+
0.0.91

0 commit comments

Comments
 (0)