chore: replace some type casts and fix variable and filename typos (#93)
This commit is contained in:
committed by
Evan You
parent
23ff681418
commit
fbabae0c0a
@@ -97,8 +97,8 @@ const blockStack: (VNode[] | null)[] = []
|
||||
//
|
||||
// disableTracking is true when creating a fragment block, since a fragment
|
||||
// always diffs its children.
|
||||
export function openBlock(disableTrackng?: boolean) {
|
||||
blockStack.push(disableTrackng ? null : [])
|
||||
export function openBlock(disableTracking?: boolean) {
|
||||
blockStack.push(disableTracking ? null : [])
|
||||
}
|
||||
|
||||
let shouldTrack = true
|
||||
|
||||
Reference in New Issue
Block a user