forked from mystiq/hydrogen-web
Used "null" instead of "undefined"
When creating the this._lastSessionHash attribute of History
This commit is contained in:
parent
0718f1e77e
commit
9b0ab0c8f1
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ export class History extends BaseObservableValue {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
this._lastSessionHash = null;
|
this._lastSessionHash = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
handleEvent(event) {
|
handleEvent(event) {
|
||||||
|
|
Loading…
Reference in a new issue