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 0e475a2 commit a98fa1dCopy full SHA for a98fa1d
src/collectionview/svelte/index.ts
@@ -38,12 +38,10 @@ class SvelteKeyedTemplate {
38
// it will trigger uncessary {N} component updates because the parent view is already attached
39
40
(nativeEl as any).__SvelteComponentBuilder__ = (parentView, props) => {
41
- profile('createView.__SvelteComponentBuilder__', () => {
42
- (nativeEl as any).__SvelteComponent__ = new this.component({
43
- target: parentView,
44
- props
45
- });
46
- })();
+ (nativeEl as any).__SvelteComponent__ = new this.component({
+ target: parentView,
+ props
+ });
47
};
48
return nativeEl;
49
}
0 commit comments