Skip to content

Commit

Permalink
fix(template-compiler): missing script value path generation
Browse files Browse the repository at this point in the history
  • Loading branch information
LastLeaf committed Aug 15, 2024
1 parent cf75abf commit e2ddc2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glass-easel-template-compiler/src/proc_gen/tag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1295,7 +1295,7 @@ impl Attribute {
double_brace_location: _,
binding_map_keys,
} => {
let maybe_event_binding = !self.is_model && attr_name_maybe_event_binding(&attr_name);
let maybe_event_binding = !self.is_model && attr_name_maybe_event_binding(&self.name.name);
let p = expression.to_proc_gen_prepare(w, scopes)?;
w.expr_stmt(|w| {
write!(w, "if(C||K||")?;
Expand Down

0 comments on commit e2ddc2e

Please sign in to comment.