mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 17:25:54 +01:00
Remove 'None yet' message when adding first label to issue.
This commit is contained in:
parent
aad91d4b21
commit
a03a1e87e9
@ -926,11 +926,17 @@ function initIssue() {
|
||||
$(item).addClass("no-checked");
|
||||
|
||||
$("#label-" + id, $labels).remove();
|
||||
|
||||
if ($labels.children(".label-item").length == 0) {
|
||||
$labels.append("<p>None yet</p>");
|
||||
}
|
||||
} else {
|
||||
$(item).prepend('<span class="check pull-left"><i class="fa fa-check"></i></span>');
|
||||
|
||||
$(item).removeClass("no-checked");
|
||||
$(item).addClass("checked");
|
||||
|
||||
$("p:not([class])", $labels).remove();
|
||||
|
||||
var $l = $("<p></p>");
|
||||
var c = $("span.color", item).css("background-color");
|
||||
|
Loading…
Reference in New Issue
Block a user