File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 102
102
<input type="text" placeholder="{{.locale.Tr "repo.issues.filter_label"}}">
103
103
</div>
104
104
<span class="info">{{.locale.Tr "repo.issues.filter_label_exclude" | Safe}}</span>
105
+ <div class="ui divider"></div>
105
106
<a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&labels=0&milestone={{$.MilestoneID}}&project={{$.ProjectID}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}">{{.locale.Tr "repo.issues.filter_label_select_no_label"}}</a>
106
107
<a class="item" href="{{$.Link}}?q={{$.Keyword}}&type={{$.ViewType}}&sort={{$.SortType}}&state={{$.State}}&milestone={{$.MilestoneID}}&project={{$.ProjectID}}&assignee={{$.AssigneeID}}&poster={{$.PosterID}}">{{.locale.Tr "repo.issues.filter_label_no_select"}}</a>
107
108
{{$previousExclusiveScope := "_no_scope"}}
108
109
{{range .Labels}}
109
110
{{$exclusiveScope := .ExclusiveScope}}
110
- {{if and (ne $previousExclusiveScope "_no_scope") (ne $previousExclusiveScope $exclusiveScope)}}
111
+ {{if and (ne $previousExclusiveScope $exclusiveScope)}}
111
112
<div class="ui divider"></div>
112
113
{{end}}
113
114
{{$previousExclusiveScope = $exclusiveScope}}
Original file line number Diff line number Diff line change 149
149
.repository .filter .menu .labels .label-filter .menu .info {
150
150
display : inline-block;
151
151
padding : 0.5rem 0.25rem ;
152
- border-bottom : 1px solid var (--color-secondary );
153
152
font-size : 12px ;
154
153
width : 100% ;
155
154
white-space : nowrap;
Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ export function initRepoIssueSidebarList() {
149
149
}
150
150
}
151
151
} ) ;
152
+ $ ( '.ui.dropdown.label-filter' ) . dropdown ( 'setting' , { 'hideDividers' : 'empty' } ) . dropdown ( 'refreshItems' ) ;
152
153
}
153
154
154
155
export function initRepoIssueCommentDelete ( ) {
You can’t perform that action at this time.
0 commit comments