The JS for the UI contains the hardcoded service for fetching concept:
fetchConcept(identifier, lang, successFunction) {
$.ajax({
type: 'GET',
url: 'https://cloud.science-miner.com/nerd/service/kb/concept/' + identifier + '?lang=' + lang,
success: (result) => {
successFunction(result);
},
dataType: 'json'
});
}
we should fetch this from the server by calling a new endpoint providing this reading it from the configuration.