Skip to content
Snippets Groups Projects
Commit 77591531 authored by Mohammad Alayoub's avatar Mohammad Alayoub
Browse files

fix #117

parent 89b9d229
No related merge requests found
......@@ -103,13 +103,13 @@ export class TopicCloudAdministrationComponent implements OnInit, OnDestroy {
this.commentService.getAckComments(localStorage.getItem('roomId')).subscribe(comments => {
this.keywords = [];
comments.forEach(comment => {
let keywords: string[];
if (this.keywordORfulltext === KeywordOrFulltext[KeywordOrFulltext.keyword]){
let keywords = comment.keywordsFromQuestioner;
if (this.keywordORfulltext === KeywordOrFulltext[KeywordOrFulltext.both]) {
if (!keywords || !keywords.length) {
keywords = comment.keywordsFromSpacy;
}
} else if (this.keywordORfulltext === KeywordOrFulltext[KeywordOrFulltext.fulltext]) {
keywords = comment.keywordsFromSpacy;
} else if (this.keywordORfulltext === KeywordOrFulltext[KeywordOrFulltext.both]){
keywords = comment.keywordsFromQuestioner.concat(comment.keywordsFromSpacy);
} else {
keywords = comment.keywordsFromQuestioner;
}
if (!keywords) {
keywords = [];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment