We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e23241 + a03a1e8 commit 0a739cfCopy full SHA for 0a739cf
public/js/app.js
@@ -984,11 +984,17 @@ function initIssue() {
984
$(item).addClass("no-checked");
985
986
$("#label-" + id, $labels).remove();
987
+
988
+ if ($labels.children(".label-item").length == 0) {
989
+ $labels.append("<p>None yet</p>");
990
+ }
991
} else {
992
$(item).prepend('<span class="check pull-left"><i class="fa fa-check"></i></span>');
993
994
$(item).removeClass("no-checked");
995
$(item).addClass("checked");
996
997
+ $("p:not([class])", $labels).remove();
998
999
var $l = $("<p></p>");
1000
var c = $("span.color", item).css("background-color");
0 commit comments