Skip to content

Commit

Permalink
BaseSelectedOptionView: typo in Edit button creation method #3555
Browse files Browse the repository at this point in the history
  • Loading branch information
ashklianko committed May 6, 2024
1 parent 5892ac8 commit b7e1485
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ export class BaseSelectedOptionView<T>
}

private createEditButton(): AEl {
let editButton = new AEl('edit');
editButton.onClicked((event: MouseEvent) => this.onEditButtonClicked(event));
this.editButton = new AEl('edit');
this.editButton.onClicked((event: MouseEvent) => this.onEditButtonClicked(event));

return editButton;
return this.editButton;
}

private createRemoveButton(): AEl {
Expand Down

0 comments on commit b7e1485

Please sign in to comment.