lexgui 8.2.1 → 8.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,7 @@ const g = globalThis;
12
12
  let LX = g.LX;
13
13
  if (!LX) {
14
14
  LX = {
15
- version: '8.2.1',
15
+ version: '8.2.2',
16
16
  ready: false,
17
17
  extensions: [], // Store extensions used
18
18
  extraCommandbarEntries: [], // User specific entries for command bar
@@ -5409,7 +5409,7 @@ class NodeTree {
5409
5409
  return;
5410
5410
  }
5411
5411
  // Element should exist, since tree was refreshed to show it
5412
- const el = this.domEl.querySelector('#' + id);
5412
+ const el = this.domEl.querySelector('#' + LX.getSupportedDOMName(id));
5413
5413
  console.assert(el, "NodeTree: Can't select node " + id);
5414
5414
  el.classList.add('selected');
5415
5415
  this.selected = [el.treeData];