Recording - minor bugfix
This commit is contained in:
parent
8c03a76422
commit
bce9432f62
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ const UI = {
|
||||||
|
|
||||||
isEqualOptions(options) {
|
isEqualOptions(options) {
|
||||||
return options === this.options || (options && this.options &&
|
return options === this.options || (options && this.options &&
|
||||||
Object.keys(options).every(k => options[k] === this.options[k]));
|
Object.keys(this.component.options).every(k => options[k] === this.options[k]));
|
||||||
}
|
}
|
||||||
|
|
||||||
toString() { return `${this.component}::${this.action}::${JSON.stringify(this.options)}`; }
|
toString() { return `${this.component}::${this.action}::${JSON.stringify(this.options)}`; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue