File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -626,6 +626,10 @@ export class ButtonWithIcon extends Button {
626
626
this . _element . append ( this . _iconElement , this . _mdlabelElement ) ;
627
627
}
628
628
629
+ override get label ( ) : IMarkdownString | string {
630
+ return super . label ;
631
+ }
632
+
629
633
override set label ( value : IMarkdownString | string ) {
630
634
if ( this . _label === value ) {
631
635
return ;
@@ -668,6 +672,10 @@ export class ButtonWithIcon extends Button {
668
672
this . _label = value ;
669
673
}
670
674
675
+ override get icon ( ) : ThemeIcon {
676
+ return super . icon ;
677
+ }
678
+
671
679
override set icon ( icon : ThemeIcon ) {
672
680
this . _iconElement . classList . value = '' ;
673
681
this . _iconElement . classList . add ( ...ThemeIcon . asClassNameArray ( icon ) ) ;
Original file line number Diff line number Diff line change @@ -75,6 +75,10 @@ export class DropdownWithPrimaryActionViewItem extends BaseActionViewItem {
75
75
this . _dropdown . actionRunner = actionRunner ;
76
76
}
77
77
78
+ override get actionRunner ( ) : IActionRunner {
79
+ return super . actionRunner ;
80
+ }
81
+
78
82
override setActionContext ( newContext : unknown ) : void {
79
83
super . setActionContext ( newContext ) ;
80
84
this . _primaryAction . setActionContext ( newContext ) ;
You can’t perform that action at this time.
0 commit comments