Skip to content

Commit

Permalink
correct display of seeAlso property in browser side panel
Browse files Browse the repository at this point in the history
  • Loading branch information
hmenager committed Jul 5, 2024
1 parent cf6a119 commit 1fba02b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/tree-edam-stand-alone.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,8 @@ function interactive_edam_browser(){
fields.push("is_identifier_of");
if (d.parent != null && browser.identifierAccessor(d.parent)!="owl:Thing")
fields.push("parents");
if(typeof d.data.see_also != "undefined")
fields.push("see_also");
if(typeof d.data.seeAlso != "undefined")
fields.push("seeAlso");
fields.forEach(function(entry) {
if("uri"==entry)
append_row_all_opt(table,"URI",uri,false,"Permanent concept identifier");
Expand Down Expand Up @@ -918,4 +918,4 @@ window.cpyToClipboard = function cpyToClipboard(value){
}, 1000);
}

export {getInitURI,interactive_edam_browser,getTreeFile}
export {getInitURI,interactive_edam_browser,getTreeFile}

0 comments on commit 1fba02b

Please sign in to comment.