Skip to content

Commit

Permalink
Fix typescript 4 error
Browse files Browse the repository at this point in the history
  • Loading branch information
icewolfz committed Sep 15, 2020
1 parent 38ab32b commit a33e56e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/common/wizard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface DataGridPageOptions extends PageOptions {
export class WizardPage extends EventEmitter {
private $body;
private $el: HTMLElement;
public title;
private _title;
public wizard: Wizard;

constructor(options?: PageOptions) {
Expand Down Expand Up @@ -75,6 +75,9 @@ export class WizardPage extends EventEmitter {
public get body() { return this.$body; }

public get page() { return this.$el; }

public get title() { return this._title; }
public set title(value: any) { this._title = value; }
}

export class WizardDataGridPage extends WizardPage {
Expand Down

0 comments on commit a33e56e

Please sign in to comment.