Skip to content

Commit 0b2ed9d

Browse files
authored
fix: no dots, please (#5165)
1 parent fa70380 commit 0b2ed9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@lwc/engine-core/src/framework/template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function setVMBeingRendered(vm: VM | null) {
6666
vmBeingRendered = vm;
6767
}
6868

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

7171
// See W-16614556
7272
// TODO [#2826]: freeze the template object

0 commit comments

Comments
 (0)