diff options
Diffstat (limited to 'interface/js/app/stats.js')
-rw-r--r-- | interface/js/app/stats.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/js/app/stats.js b/interface/js/app/stats.js index 1f6a1b5b2..03cc02d08 100644 --- a/interface/js/app/stats.js +++ b/interface/js/app/stats.js @@ -107,14 +107,14 @@ define(["jquery", "d3pie"], $("#selSrv").empty(); $.each(servers, function (key, val) { var row_class = "danger"; - var glyph_status = "glyphicon glyphicon-remove"; + var glyph_status = "fas fa-times"; var short_id = "???"; if (!("config_id" in val.data)) { val.data.config_id = ""; } if (val.status) { row_class = "success"; - glyph_status = "glyphicon glyphicon-ok"; + glyph_status = "fas fa-check"; short_id = val.data.config_id.substring(0, 8); } |