From a6e356c0cf6fbc165efd0e7acd46e98c7467292f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 10 Aug 2013 16:46:27 -0700 Subject: [PATCH] Version and branch shown when not on master --- UI/ServerStatus.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/ServerStatus.js b/UI/ServerStatus.js index 8895c49f4..ff01fb00e 100644 --- a/UI/ServerStatus.js +++ b/UI/ServerStatus.js @@ -12,7 +12,7 @@ var footerText = window.ServerStatus.version; $(document).ready(function () { if (window.ServerStatus.branch != 'master') { - footerText = '
' + window.ServerStatus.branch; + footerText += '
' + window.ServerStatus.branch; } $('#footer-region .version').html(footerText); });