1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix getter return value bugs

This commit is contained in:
Bill Thornton 2023-05-02 12:53:20 -04:00
parent c0012de927
commit 5cfdb1647f
3 changed files with 3 additions and 3 deletions

View file

@ -39,9 +39,9 @@ try {
const elem = document.createElement('div');
const opts = Object.defineProperty({}, 'behavior', {
// eslint-disable-next-line getter-return
get: function () {
supportsScrollToOptions = true;
return null;
}
});