mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
Bugfix: type error elementById(...) is null #272
This commit is contained in:
parent
c510959b76
commit
4b02c19aa3
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ export class AbstractSettingsScreen extends AbstractScreen {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
elementById('rl-settings-subscreen').scrollTop = 0;
|
(elementById('rl-settings-subscreen') || {}).scrollTop = 0;
|
||||||
// --
|
// --
|
||||||
}, 1);
|
}, 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue