ソースを参照

parent dialog: rem. ns=0 from nodeid

Martin Kunz 1 ヶ月 前
コミット
c6d81c1a81
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  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>