Skip to content

Commit

Permalink
Fixes block reassignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Feb 3, 2025
1 parent 65a4838 commit e084e2a
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);
faqs = faqs.filter(faq => faq.agents_available === true || faq.agents_available === undefined);
}
faqs.forEach((faq, index) => {
processedItems++;
Expand Down

0 comments on commit e084e2a

Please sign in to comment.