reload view when webInstances change in the link

This commit is contained in:
Bruno Windels 2021-02-04 17:08:04 +01:00
parent daa6e21d75
commit cd559e14ea
1 changed files with 3 additions and 1 deletions

View File

@ -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() {