Merge pull request #5335 from GabrielInTheWorld/fixTopicPreview

Fixes preview of topics in global search
This commit is contained in:
Emanuel Schütze 2020-04-24 09:13:36 +02:00 committed by GitHub
commit 0c6da9799c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export class ViewTopic extends BaseViewModelWithAgendaItemAndListOfSpeakers<Topi
return {
properties: [
{ key: 'Title', value: this.getTitle() },
{ key: 'Text', value: this.text }
{ key: 'Text', value: this.text, trusted: true }
],
searchValue: [this.getTitle(), this.text]
};