Backport pull request #7415 from jellyfin-web/release-10.11.z

Fix the return value for 'behavior' property

Original-merge: e2ae48d8e5

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
dmitrylyzo
2025-12-12 13:32:38 -05:00
committed by thornbill
parent e41ea5a293
commit 7ccc98ec7a

View File

@@ -41,7 +41,7 @@ try {
const opts = Object.defineProperty({}, 'behavior', {
get: function () {
supportsScrollToOptions = true;
return null;
return 'auto';
}
});