Fix losing search when adding relative date

This commit is contained in:
Michael Shamoon 2022-10-25 13:43:13 -07:00
parent b52cb193e1
commit 84b3fee0f9

View File

@ -300,8 +300,10 @@ export class FilterEditorComponent implements OnInit, OnDestroy {
queryArgs.splice(queryArgs.indexOf(arg), 1)
}
})
this._textFilter = queryArgs.join(',')
this.textFilterTarget = TEXT_FILTER_TARGET_FULLTEXT_QUERY
if (queryArgs.length) {
this._textFilter = queryArgs.join(',')
this.textFilterTarget = TEXT_FILTER_TARGET_FULLTEXT_QUERY
}
break
case FILTER_FULLTEXT_MORELIKE:
this._moreLikeId = +rule.value