@@ -55,7 +55,7 @@ export class TaskPanel extends Panel {
5555 thanks . removeClass ( 'task-panel-hidden' ) ;
5656 }
5757
58- yesButton . item ( 0 ) . on ( 'click' , e => {
58+ yesButton . on ( 'click' , e => {
5959 if ( ! this . storageService . get ( this . taskExperimentPart5 ) ) {
6060 this . telemetryService . publicLog ( 'taskPanel.yes' ) ;
6161 this . storageService . store ( this . taskExperimentPart5 , true , StorageScope . GLOBAL ) ;
@@ -64,7 +64,7 @@ export class TaskPanel extends Panel {
6464 thanks . removeClass ( 'task-panel-hidden' ) ;
6565 } ) ;
6666
67- noButton . item ( 0 ) . on ( 'click' , e => {
67+ noButton . on ( 'click' , e => {
6868 if ( ! this . storageService . get ( this . taskExperimentPart5 ) ) {
6969 this . telemetryService . publicLog ( 'taskPanel.no' ) ;
7070 this . storageService . store ( this . taskExperimentPart5 , true , StorageScope . GLOBAL ) ;
@@ -73,7 +73,7 @@ export class TaskPanel extends Panel {
7373 thanks . removeClass ( 'task-panel-hidden' ) ;
7474 } ) ;
7575
76- githubLink . item ( 0 ) . on ( 'click' , e => {
76+ githubLink . on ( 'click' , e => {
7777 const node = event . target as HTMLAnchorElement ;
7878 if ( node . href ) {
7979 this . openerService . open ( URI . parse ( node . href ) ) ;
0 commit comments