File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ const DYNAMIC_TWEAKS = [
143143 // way to separate the header from the body.
144144 { selector : '.TimelineItem:not(.js-commit) .TimelineItem-body:not(.my-0):not([id^="ref-commit-"])' ,
145145 tweak : [ makeHeading , 3 ] } ,
146- // Table lists; e.g. in issue and commit listings .
147- { selector : '.js-navigation-container' ,
146+ // Issue listing tables .
147+ { selector : '.js-navigation-container:not(.commits-listing) ' ,
148148 tweak : el => el . setAttribute ( "role" , "table" ) } ,
149149 { selector : '.Box-row' ,
150150 tweak : el => el . setAttribute ( "role" , "row" ) } ,
@@ -157,6 +157,9 @@ const DYNAMIC_TWEAKS = [
157157 cell . setAttribute ( "role" , "cell" ) ;
158158 }
159159 } } ,
160+ // Commit group headers in commit listings.
161+ { selector : '.commit-group-title' ,
162+ tweak : [ makeHeading , 2 ] } ,
160163] ;
161164
162165/*** Lights, camera, action! ***/
You can’t perform that action at this time.
0 commit comments