Skip to content
Snippets Groups Projects
Commit 5111c96f authored by Benedikt Heinrichs's avatar Benedikt Heinrichs
Browse files

New: QualifiedValueShape Support

parent a63f7919
Branches
Tags
2 merge requests!135Chore: 3.3.0,!134New: QualifiedValueShape Support
......@@ -379,6 +379,10 @@ export default defineComponent({
this.dataset.match(
this.property,
factory.namedNode(prefixes.sh + 'node')
).size > 0 ||
this.dataset.match(
this.property,
factory.namedNode(prefixes.sh + 'qualifiedValueShape')
).size > 0
);
},
......@@ -454,6 +458,13 @@ export default defineComponent({
factory.namedNode(prefixes.sh + 'node'),
this.dataset
);
names.push(
...getObject(
this.property,
factory.namedNode(prefixes.sh + 'qualifiedValueShape'),
this.dataset
)
);
if (!names.length) {
return '';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment