Set correct font and fix the follow flag

This commit is contained in:
Johannes Zellner
2017-08-07 18:26:03 +02:00
parent 737e266729
commit 534e5781ba
3 changed files with 4 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ angular.module('Application').controller('LogsController', ['$scope', '$location
}
var logLine = $('<div>');
logLine.html(window.ansiToHTML(ab2str(data.message)));
logLine.html(window.ansiToHTML(typeof data.message === 'string' ? data.message : ab2str(data.message)));
logViewer.append(logLine);
};
});