File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
webviews/createPullRequestViewNew Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -315,9 +315,9 @@ export function main() {
315
315
onClick = { ( e ) => activateCommand ( e . nativeEvent , 'pr.changeProjects' ) }
316
316
onKeyPress = { ( e ) => activateCommand ( e . nativeEvent , 'pr.changeProjects' ) }
317
317
>
318
- { params . projects . map ( project =>
318
+ { params . projects . map ( ( project , index ) =>
319
319
< li >
320
- < span key = { project . id } > { project . title } </ span >
320
+ < span key = { project . id } > { index > 0 ? < span className = 'sep' > • </ span > : null } { project . title } </ span >
321
321
</ li > ) }
322
322
</ ul >
323
323
</ div >
Original file line number Diff line number Diff line change @@ -240,6 +240,10 @@ textarea {
240
240
padding : 2px ;
241
241
}
242
242
243
+ .group-additions ul li .sep {
244
+ padding-right : 7px ;
245
+ }
246
+
243
247
.labels ul li {
244
248
border : 1px solid var (--vscode-menu-separatorBackground );
245
249
border-radius : 2px ;
You can’t perform that action at this time.
0 commit comments