@entryscape/rdforms 10.12.0 → 10.12.1
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.
package/package.json
CHANGED
package/src/model/engine.js
CHANGED
|
@@ -661,7 +661,7 @@ const matchPathBelowBinding = (bindingTree, path) => {
|
|
|
661
661
|
return res;
|
|
662
662
|
}
|
|
663
663
|
}
|
|
664
|
-
if (pred === '*' || pred === b.getPredicate()) {
|
|
664
|
+
if (pred === '*' || pred === b.getPredicate() || pred === item.getId()) {
|
|
665
665
|
if (item.getType() === 'group') {
|
|
666
666
|
res = matchPathBelowBinding(b, _path.slice(1));
|
|
667
667
|
if (res) {
|