Remove button property setter causing exception (#13284)

* Fix navigation buttons

* Remove icon set in welcome page
This commit is contained in:
Barbara Valdez
2020-11-06 14:49:14 -08:00
committed by GitHub
parent 8b40e8e4bf
commit e83d3ba57f
2 changed files with 0 additions and 2 deletions

View File

@@ -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));