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.
1 parent aad91d4 commit a03a1e8Copy full SHA for a03a1e8
public/js/app.js
@@ -926,11 +926,17 @@ function initIssue() {
926
$(item).addClass("no-checked");
927
928
$("#label-" + id, $labels).remove();
929
+
930
+ if ($labels.children(".label-item").length == 0) {
931
+ $labels.append("<p>None yet</p>");
932
+ }
933
} else {
934
$(item).prepend('<span class="check pull-left"><i class="fa fa-check"></i></span>');
935
936
$(item).removeClass("no-checked");
937
$(item).addClass("checked");
938
939
+ $("p:not([class])", $labels).remove();
940
941
var $l = $("<p></p>");
942
var c = $("span.color", item).css("background-color");
0 commit comments