Fix the return value for 'behavior' property

The provided value 'null' is not a valid enum value of type ScrollBehavior.
This commit is contained in:
Dmitry Lyzo
2025-12-09 21:26:51 +03:00
parent b3725e9dd5
commit 44818f0c97

View File

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