Skip to content

Commit e15ea75

Browse files
committed
bnode
1 parent b6b5352 commit e15ea75

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

docs/browse/classes.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const ENDPOINT = "https://graph.dhi-roma.it/query";
44
const ONTOLOGY_GRAPH = "http://www.w3.org/2002/07/owl#";
55
const HIDDEN_CLASSES = [
66
"http://www.w3.org/2002/07/owl#Thing",
7-
"https://w3id.org/grace/ontology/anything",
87
"https://w3id.org/grace/ontology/description"
98
];
109

docs/browse/resource/viewer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ function renderObject(binding) {
646646

647647
return withCopy(div, object.value);
648648
}
649-
if (object.type === "uri") {
649+
if (object.type === "uri" || object.type === "bnode") {
650650
const link = document.createElement("a");
651651
link.href = "#" + encodeURIComponent(object.value);
652652
link.textContent = binding.oLabel?.value || shortenIri(object.value);

0 commit comments

Comments
 (0)