We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b5352 commit e15ea75Copy full SHA for e15ea75
2 files changed
docs/browse/classes.js
@@ -4,7 +4,6 @@ const ENDPOINT = "https://graph.dhi-roma.it/query";
4
const ONTOLOGY_GRAPH = "http://www.w3.org/2002/07/owl#";
5
const HIDDEN_CLASSES = [
6
"http://www.w3.org/2002/07/owl#Thing",
7
- "https://w3id.org/grace/ontology/anything",
8
"https://w3id.org/grace/ontology/description"
9
];
10
docs/browse/resource/viewer.js
@@ -646,7 +646,7 @@ function renderObject(binding) {
646
647
return withCopy(div, object.value);
648
}
649
- if (object.type === "uri") {
+ if (object.type === "uri" || object.type === "bnode") {
650
const link = document.createElement("a");
651
link.href = "#" + encodeURIComponent(object.value);
652
link.textContent = binding.oLabel?.value || shortenIri(object.value);
0 commit comments