Used "null" instead of "undefined"

When creating the this._lastSessionHash attribute of History
This commit is contained in:
Kaki In 2022-07-27 09:19:36 +02:00
parent 0718f1e77e
commit 9b0ab0c8f1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export class History extends BaseObservableValue {
constructor() {
super();
this._lastSessionHash = null;
this._lastSessionHash = undefined;
}
handleEvent(event) {