diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js index 0dccd57..548122b 100644 --- a/ogcp/static/js/ogcp.js +++ b/ogcp/static/js/ogcp.js @@ -258,11 +258,13 @@ function updatePillStatus(scope, pill) { $('[name="link"]', pill).remove() if (link) { + let linkClasses = 'class="badge-danger badge-pill"'; if (link >= 1000) { link = link / 1000 units = 'Gb/s' + linkClasses = ''; } - $(pill).append('
' + link + ' ' + units + '
'); + $(pill).append('
' + link + ' ' + units + '
'); } } diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html index ead7642..fad931a 100644 --- a/ogcp/templates/base.html +++ b/ogcp/templates/base.html @@ -108,7 +108,7 @@ - +