File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
lib/vscode/src/vs/workbench/contrib/extensions/browser Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,6 @@ export class ExtensionsViewPaneContainer extends ViewPaneContainer implements IE
406
406
this . root = parent ;
407
407
408
408
const overlay = append ( this . root , $ ( '.overlay' ) ) ;
409
-
410
409
const overlayBackgroundColor = this . getColor ( SIDE_BAR_DRAG_AND_DROP_BACKGROUND ) ?? '' ;
411
410
overlay . style . backgroundColor = overlayBackgroundColor ;
412
411
hide ( overlay ) ;
@@ -425,7 +424,7 @@ export class ExtensionsViewPaneContainer extends ViewPaneContainer implements IE
425
424
<div style="margin-bottom: 8px;">
426
425
<p style="margin-bottom: 0; display: flex; align-items: center"><span class="codicon codicon-warning" style="margin-right: 2px; color: #C4A103"></span>WARNING</p>
427
426
<p style="margin-top: 0; margin-bottom: 4px">
428
- These extensions are not official. Find open-source extensions
427
+ These extensions are not official. Find additional open-source extensions
429
428
<a href="https://open-vsx.org/" target="_blank">here</a>.
430
429
See <a href="https://github.com/cdr/code-server/blob/master/doc/FAQ.md#differences-compared-to-vs-code" target="_blank">docs</a>.
431
430
</p>
@@ -438,8 +437,7 @@ export class ExtensionsViewPaneContainer extends ViewPaneContainer implements IE
438
437
dismiss . style . textAlign = 'right' ;
439
438
dismiss . style . cursor = 'pointer' ;
440
439
dismiss . onclick = ( ) => {
441
- // Eventually removes helperHeader from DOM
442
- setTimeout ( ( ) => helperHeader . remove ( ) ) ;
440
+ helperHeader . remove ( ) ;
443
441
localStorage . setItem ( extensionHelperLocalStorageKey , 'viewed' ) ;
444
442
} ;
445
443
}
You can’t perform that action at this time.
0 commit comments