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 10224e0 commit 691e40bCopy full SHA for 691e40b
src/idiomorph.js
@@ -1182,6 +1182,12 @@ var Idiomorph = (function () {
1182
for (const id of duplicateIds) {
1183
persistentIds.delete(id);
1184
}
1185
+ if (duplicateIds.size) {
1186
+ console.warn(
1187
+ "[Warning] duplicate ids found during morph, state loss within these elements is possible:",
1188
+ Array.from(duplicateIds),
1189
+ );
1190
+ }
1191
return persistentIds;
1192
1193
0 commit comments