diff --git a/public/js/app.js b/public/js/app.js index d7208119b3..6f4676f624 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -926,11 +926,17 @@ function initIssue() { $(item).addClass("no-checked"); $("#label-" + id, $labels).remove(); + + if ($labels.children(".label-item").length == 0) { + $labels.append("

None yet

"); + } } else { $(item).prepend(''); $(item).removeClass("no-checked"); $(item).addClass("checked"); + + $("p:not([class])", $labels).remove(); var $l = $("

"); var c = $("span.color", item).css("background-color");