@@ -449,7 +449,6 @@ export class CallStackView extends ViewPane {
449449interface IThreadTemplateData {
450450 thread : HTMLElement ;
451451 name : HTMLElement ;
452- state : HTMLElement ;
453452 stateLabel : HTMLSpanElement ;
454453 label : HighlightedLabel ;
455454 actionBar : ActionBar ;
@@ -458,7 +457,6 @@ interface IThreadTemplateData {
458457interface ISessionTemplateData {
459458 session : HTMLElement ;
460459 name : HTMLElement ;
461- state : HTMLElement ;
462460 stateLabel : HTMLSpanElement ;
463461 label : HighlightedLabel ;
464462 actionBar : ActionBar ;
@@ -500,8 +498,7 @@ class SessionsRenderer implements ICompressibleTreeRenderer<IDebugSession, Fuzzy
500498 const session = dom . append ( container , $ ( '.session' ) ) ;
501499 dom . append ( session , $ ( '.codicon.codicon-bug' ) ) ;
502500 const name = dom . append ( session , $ ( '.name' ) ) ;
503- const state = dom . append ( session , $ ( '.state' ) ) ;
504- const stateLabel = dom . append ( state , $ ( 'span.label.monaco-count-badge.long' ) ) ;
501+ const stateLabel = dom . append ( session , $ ( 'span.label.monaco-count-badge.long' ) ) ;
505502 const label = new HighlightedLabel ( name , false ) ;
506503 const actionBar = new ActionBar ( session , {
507504 actionViewItemProvider : action => {
@@ -515,7 +512,7 @@ class SessionsRenderer implements ICompressibleTreeRenderer<IDebugSession, Fuzzy
515512 }
516513 } ) ;
517514
518- return { session, name, state , stateLabel, label, actionBar, elementDisposable : [ ] } ;
515+ return { session, name, stateLabel, label, actionBar, elementDisposable : [ ] } ;
519516 }
520517
521518 renderElement ( element : ITreeNode < IDebugSession , FuzzyScore > , _ : number , data : ISessionTemplateData ) : void {
@@ -581,12 +578,11 @@ class ThreadsRenderer implements ICompressibleTreeRenderer<IThread, FuzzyScore,
581578 renderTemplate ( container : HTMLElement ) : IThreadTemplateData {
582579 const thread = dom . append ( container , $ ( '.thread' ) ) ;
583580 const name = dom . append ( thread , $ ( '.name' ) ) ;
584- const state = dom . append ( thread , $ ( '.state' ) ) ;
585- const stateLabel = dom . append ( state , $ ( 'span.label' ) ) ;
581+ const stateLabel = dom . append ( thread , $ ( 'span.label' ) ) ;
586582 const label = new HighlightedLabel ( name , false ) ;
587583 const actionBar = new ActionBar ( thread ) ;
588584
589- return { thread, name, state , stateLabel, label, actionBar } ;
585+ return { thread, name, stateLabel, label, actionBar } ;
590586 }
591587
592588 renderElement ( element : ITreeNode < IThread , FuzzyScore > , index : number , data : IThreadTemplateData ) : void {
0 commit comments