mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
parent
9a690e813b
commit
894fd09125
@ -86,7 +86,11 @@ export class AppComponent implements OnInit, OnDestroy {
|
||||
const previousValue = this.previousValues[key];
|
||||
|
||||
if (previousValue !== value) {
|
||||
changes[key] = new SimpleChange(previousValue, value, !this.previousValues.hasOwnProperty(key));
|
||||
changes[key] = new SimpleChange(
|
||||
previousValue,
|
||||
value,
|
||||
!Object.prototype.hasOwnProperty.call(this.previousValues, key)
|
||||
);
|
||||
this.previousValues[key] = value;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user