Browse Source

parent dialog: rem. ns=0 from nodeid

Martin Kunz 1 month ago
parent
commit
c6d81c1a81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/TheParent.vue

+ 1 - 1
src/components/TheParent.vue

@@ -45,7 +45,7 @@ function filter(fnode: UABaseNode) {
   return false;
 }
 const refTypes = computed(():UABaseNode[]  => {
-  const list=(store.addressSpace?.getSubTreeAsList("ns=0;i="+ReferenceTypeIds.HierarchicalReferences)) as UAReferenceType[];
+  const list=(store.addressSpace?.getSubTreeAsList("i="+ReferenceTypeIds.HierarchicalReferences)) as UAReferenceType[];
   return list.filter((node) => node.isAbstract==false);
 })
 </script>