Skip to content

Commit 69e12ce

Browse files
committed
Display dashboard header line in first column
Change-Id: If989b4611f0637025dd02c9f9288e16231185a79
1 parent 227d835 commit 69e12ce

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,11 @@ This code is tested using gerrit=3.8 and the gerrit version used on
3131

3232
Jan 2025:
3333

34-
* Remove support for setting the assignee in `gerrit-upload`
35-
* Remove support for displaying and the asignee in the gerrit dashboard
34+
* Display section header-line in dashboard in first and not in second
35+
column.
36+
* Remove support for setting the assignee in `gerrit-upload`.
37+
* Remove support for displaying and the asignee in the gerrit
38+
dashboard.
3639

3740
March 2024:
3841

gerrit.el

+2-3
Original file line numberDiff line numberDiff line change
@@ -1059,13 +1059,12 @@ locally and is referenced in
10591059
;; gerrit-dashboard-query-alist is 1 and (car conscell) is
10601060
;; nil
10611061
(if (car conscell)
1062-
(append acc `((nil [""
1063-
,(propertize
1062+
(append acc `((nil [,(propertize
10641063
(format "%s (%d)" (car conscell) (length section-data))
10651064
'face 'gerrit-section)
10661065
;; is there an easier way to add len(columns)-2 times ""?
10671066
,@(seq-map (lambda (_) "") (number-sequence
1068-
2 (1- (length gerrit-dashboard-columns))))]))
1067+
1 (1- (length gerrit-dashboard-columns))))]))
10691068
section-data)
10701069
;; don't display a header line
10711070
(append acc section-data))))

0 commit comments

Comments
 (0)