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 fe2f521 commit 3647ce3Copy full SHA for 3647ce3
packages/svelte/src/internal/client/dom/template.js
@@ -250,7 +250,7 @@ export function append(anchor, dom) {
250
anchor.before(/** @type {Node} */ (dom));
251
}
252
253
-let NEXT_UID = 100;
+let uid = 100;
254
255
/**
256
* Create (or hydrate) an unique UID for the component instance.
@@ -267,5 +267,5 @@ export function props_id() {
267
return id;
268
269
270
- return 'c' + NEXT_UID++;
+ return 'c' + uid++;
271
0 commit comments