Skip to content

Commit

Permalink
fix photo url
Browse files Browse the repository at this point in the history
  • Loading branch information
mbredif committed Sep 24, 2024
1 parent 5f57efa commit 98c3807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
const perm = cols[12] == 'true';
const label = firstname+'\n'+lastname;
const id = (HAL || removeAccents(firstname+'-'+lastname).replace(' ','-')).toLowerCase();
const photo = "/user/"+id+".jpg";
const photo = "user/"+id+".jpg";
const node = { id: id, label:label, group:'people', image: photo, opacity:member?1:0.2, href:href, perm: perm, member: member, start: start_date, end: end_date};
console.log(node);
nodes.add(node);
Expand Down

0 comments on commit 98c3807

Please sign in to comment.