Skip to content
Snippets Groups Projects
Commit cd559e14 authored by Bruno Windels's avatar Bruno Windels
Browse files

reload view when webInstances change in the link

parent daa6e21d
Branches
Tags
No related merge requests found
......@@ -171,7 +171,9 @@ export class Link {
return link &&
link.identifier === this.identifier &&
this.servers.length === link.servers.length &&
this.servers.every((s, i) => link.servers[i] === s);
this.servers.every((s, i) => link.servers[i] === s) &&
Object.keys(this.webInstances).length === Object.keys(link.webInstances).length &&
Object.keys(this.webInstances).every(k => this.webInstances[k] === link.webInstances[k]);
}
toFragment() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment