fix: Customer additional field
This commit is contained in:
@ -27,9 +27,15 @@ async function updateSources(resource) {
|
||||
|
||||
async function resToChildrens(resource) {
|
||||
resource = resource.getResourceData();
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#user"]["@id"]);
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#project"]["@id"] + "members/");
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#circle"]["@id"] + "members/");
|
||||
if (resource["http://happy-dev.fr/owl/#user"]) {
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#user"]["@id"]);
|
||||
}
|
||||
if (resource["http://happy-dev.fr/owl/#project"]) {
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#project"]["@id"] + "members/");
|
||||
}
|
||||
if (resource["http://happy-dev.fr/owl/#circle"]) {
|
||||
refreshSibDisplays(resource["http://happy-dev.fr/owl/#circle"]["@id"] + "members/");
|
||||
}
|
||||
}
|
||||
|
||||
//auxiliary function updates displays using a given resource
|
||||
|
Reference in New Issue
Block a user