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 845d1a5 commit ae26764Copy full SHA for ae26764
src/editors/cleanup/control-blocks-container.ts
@@ -290,7 +290,7 @@ export class CleanupControlBlocks extends LitElement {
290
.forEach(cb => {
291
const parent = cb.parentElement;
292
const name = cb.getAttribute('datSet');
293
- const isReferenced = parent?.querySelector(`DataSet[name=${name}]`);
+ const isReferenced = parent?.querySelector(`DataSet[name="${name}"]`);
294
if (parent && (!name || !isReferenced)) unreferencedCBs.push(cb);
295
});
296
this.unreferencedControls = identitySort(unreferencedCBs);
0 commit comments