We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96c2eac commit 1b2dba6Copy full SHA for 1b2dba6
packages/svelte/src/compiler/compile/nodes/Binding.js
@@ -97,7 +97,7 @@ export default class Binding extends Node {
97
this.is_readonly =
98
regex_dimensions.test(this.name) ||
99
regex_box_size.test(this.name) ||
100
- (isElement(parent) &&
+ (is_element(parent) &&
101
parent.is_media_node() &&
102
read_only_media_attributes.has(this.name)) /* TODO others? */;
103
}
0 commit comments