File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ class ApprovalManager {
6969 // Filter out existing status labels
7070 const statusLabels = [ "accepted" , "turned-down" , "timed-out" , "proposed" ] ;
7171 const existingLabels = issue . data . labels
72- . map ( label => typeof label === ' string' ? label : label . name )
73- . filter ( label => ! statusLabels . includes ( label ) ) ;
72+ . map ( ( label ) => ( typeof label === " string" ? label : label . name ) )
73+ . filter ( ( label ) => ! statusLabels . includes ( label ) ) ;
7474
7575 // Determine new status label
7676 let newStatusLabel ;
@@ -171,7 +171,7 @@ class ApprovalManager {
171171 // Update awaiting lists
172172 this . awaitingCore = this . coreTeamMembers . filter ( ( u ) => ! this . coreApprovals . has ( u ) && ! this . coreRejections . has ( u ) ) ;
173173 this . awaitingMaintainers = this . maintainerTeamMembers . filter (
174- ( u ) => ! this . maintainerApprovals . has ( u ) && ! this . maintainerRejections . has ( u ) ,
174+ ( u ) => ! this . maintainerApprovals . has ( u ) && ! this . maintainerRejections . has ( u )
175175 ) ;
176176 }
177177}
You can’t perform that action at this time.
0 commit comments