Browse Source

Destructure isUsed in assistanat component #2

pull/3859/head
Matej Gerek 11 months ago
committed by Thomas Kaul
parent
commit
d0eb1a2d65
  1. 2
      libs/ui/src/lib/assistant/assistant.component.ts

2
libs/ui/src/lib/assistant/assistant.component.ts

@ -270,7 +270,7 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit {
}
this.tags = this.user?.tags
.filter((tag) => tag.isUsed)
.filter(({ isUsed }) => isUsed)
.map(({ id, name }) => {
return {
id,

Loading…
Cancel
Save