We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 4776c41 commit 687acf7Copy full SHA for 687acf7
src/generators/dom/visitors/Element/Binding.ts
@@ -266,7 +266,7 @@ function getBindingValue(
266
return `@toNumber(${state.parentNode}.${attribute.name})`;
267
}
268
269
- if (isMediaElement && attribute.name === 'buffered' || attribute.name === 'seekable' || attribute.name === 'played') {
+ if (isMediaElement && (attribute.name === 'buffered' || attribute.name === 'seekable' || attribute.name === 'played')) {
270
return `@timeRangesToArray(${state.parentNode}.${attribute.name})`
271
272
0 commit comments