There was an error while loading. Please reload this page.
1 parent 4eee7c6 commit e03b633Copy full SHA for e03b633
1 file changed
src/app/services/cache/labels-cache.service.ts
@@ -27,7 +27,7 @@ export class LabelsCacheService {
27
const idsWithoutLabel: string[] = Array.from(
28
this._idsToCacheLabelFor,
29
).filter((id) => {
30
- const labelAlreadyDefined = Object.keys(this.labels).includes(id);
+ const labelAlreadyDefined = Object.keys(this.labels.value).includes(id);
31
const alreadyRetrievingLabel = this._labelsBeingCachedForIds.has(id);
32
return !labelAlreadyDefined && !alreadyRetrievingLabel;
33
});
0 commit comments