Skip to content

Commit

Permalink
UserService: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
dezhidki committed Feb 26, 2025
1 parent 85e3469 commit 3bea1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timApp/static/scripts/tim/user/userService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class UserService {
.map((tag) => tag.name)
);
const groupReviewTags = this.current.groups.map(
(g) => `answer_review_group:${g.name}`
(ug) => `answer_review_group:${ug.name}`
);
const res = groupReviewTags.some((tag) => activeTags.has(tag));
// console.log(activeTags, groupReviewTags, res);
Expand Down

0 comments on commit 3bea1b6

Please sign in to comment.