mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 09:35:39 -05:00
Remove button property setter causing exception (#13284)
* Fix navigation buttons * Remove icon set in welcome page
This commit is contained in:
@@ -557,7 +557,6 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe
|
||||
private addButton(label: string, onDidClick?: () => void, enabled?: boolean): void {
|
||||
const container = DOM.append(this.bookNav.nativeElement, DOM.$('.dialog-message-button'));
|
||||
let button = new Button(container);
|
||||
button.icon = '';
|
||||
button.label = label;
|
||||
if (onDidClick) {
|
||||
this._register(button.onDidClick(onDidClick));
|
||||
|
||||
Reference in New Issue
Block a user