File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed
Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -574,9 +574,10 @@ export const MergeSelect = React.forwardRef<HTMLSelectElement, MergeSelectProps>
574574const CHECK_STATE_ORDER : Record < CheckState , number > = {
575575 [ CheckState . Failure ] : 0 ,
576576 [ CheckState . Pending ] : 1 ,
577- [ CheckState . Neutral ] : 2 ,
578- [ CheckState . Success ] : 3 ,
579- [ CheckState . Unknown ] : 4 ,
577+ [ CheckState . Unknown ] : 2 ,
578+ [ CheckState . Neutral ] : 3 ,
579+ [ CheckState . Success ] : 4 ,
580+
580581} ;
581582
582583const StatusCheckDetails = ( { statuses } : { statuses : PullRequestCheckStatus [ ] } ) => {
@@ -598,14 +599,14 @@ const StatusCheckDetails = ({ statuses }: { statuses: PullRequestCheckStatus[] }
598599 </ span >
599600 </ div >
600601 < div >
601- { s . isRequired ? (
602- < span className = "label" > Required</ span >
603- ) : null }
604- { ! ! s . targetUrl ? (
605- < a href = { s . targetUrl } title = { s . targetUrl } >
606- Details
607- </ a >
608- ) : null }
602+ { s . isRequired ? (
603+ < span className = "label" > Required</ span >
604+ ) : null }
605+ { ! ! s . targetUrl ? (
606+ < a href = { s . targetUrl } title = { s . targetUrl } >
607+ Details
608+ </ a >
609+ ) : null }
609610 </ div >
610611 </ div >
611612 ) ) }
You can’t perform that action at this time.
0 commit comments