diff --git a/templates/repo/issue/list.tmpl b/templates/repo/issue/list.tmpl index 313f7d6e98..5c9a5937a1 100644 --- a/templates/repo/issue/list.tmpl +++ b/templates/repo/issue/list.tmpl @@ -102,12 +102,13 @@ {{.locale.Tr "repo.issues.filter_label_exclude" | Safe}} +
{{.locale.Tr "repo.issues.filter_label_select_no_label"}} {{.locale.Tr "repo.issues.filter_label_no_select"}} {{$previousExclusiveScope := "_no_scope"}} {{range .Labels}} {{$exclusiveScope := .ExclusiveScope}} - {{if and (ne $previousExclusiveScope "_no_scope") (ne $previousExclusiveScope $exclusiveScope)}} + {{if and (ne $previousExclusiveScope $exclusiveScope)}}
{{end}} {{$previousExclusiveScope = $exclusiveScope}} diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 3896265dda..c476fab1b5 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -149,7 +149,6 @@ .repository .filter.menu.labels .label-filter .menu .info { display: inline-block; padding: 0.5rem 0.25rem; - border-bottom: 1px solid var(--color-secondary); font-size: 12px; width: 100%; white-space: nowrap; diff --git a/web_src/js/features/repo-issue.js b/web_src/js/features/repo-issue.js index d271d2b84e..979ee89723 100644 --- a/web_src/js/features/repo-issue.js +++ b/web_src/js/features/repo-issue.js @@ -149,6 +149,7 @@ export function initRepoIssueSidebarList() { } } }); + $('.ui.dropdown.label-filter').dropdown('setting', {'hideDividers': 'empty'}).dropdown('refreshItems'); } export function initRepoIssueCommentDelete() {