Skip to content

Commit

Permalink
fix: no dots, please (#5165)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjhsf authored Jan 24, 2025
1 parent fa70380 commit 0b2ed9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@lwc/engine-core/src/framework/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export function setVMBeingRendered(vm: VM | null) {
vmBeingRendered = vm;
}

const VALID_SCOPE_TOKEN_REGEX = /^[a-zA-Z0-9\-_.]+$/;
const VALID_SCOPE_TOKEN_REGEX = /^[a-zA-Z0-9\-_]+$/;

// See W-16614556
// TODO [#2826]: freeze the template object
Expand Down

0 comments on commit 0b2ed9d

Please sign in to comment.