Skip to content

Commit

Permalink
Fixes block reassignment (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Feb 3, 2025
1 parent e084e2a commit f7c3a31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3886,7 +3886,7 @@ export class WsRequestsMsgsComponent extends WsSharedComponent implements OnInit

let processedItems = 0;
if (this.CURRENT_USER_ROLE === 'agent') {
faqs = faqs.filter(faq => faq.agents_available === true || faq.agents_available === undefined);
faqs = faqs.filter(faq => faq.agents_available === true);
}
faqs.forEach((faq, index) => {
processedItems++;
Expand Down

0 comments on commit f7c3a31

Please sign in to comment.