Fix search title
This commit is contained in:
parent
d216b5387f
commit
f107470e50
2 changed files with 3 additions and 3 deletions
|
@ -146,7 +146,8 @@ export class SearchComponent implements OnInit, OnDestroy {
|
||||||
}
|
}
|
||||||
|
|
||||||
private updateTitle () {
|
private updateTitle () {
|
||||||
this.metaService.setTitle(this.i18n('Search') + ' ' + this.currentSearch)
|
const suffix = this.currentSearch ? ' ' + this.currentSearch : ''
|
||||||
|
this.metaService.setTitle(this.i18n('Search') + suffix)
|
||||||
}
|
}
|
||||||
|
|
||||||
private updateUrlFromAdvancedSearch () {
|
private updateUrlFromAdvancedSearch () {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* tslint:disable:no-unused-expression */
|
/* tslint:disable:no-unused-expression */
|
||||||
|
|
||||||
import { makeDeleteRequest, makePostBodyRequest } from '../requests/requests'
|
import { makeGetRequest, makeDeleteRequest, makePostBodyRequest } from '../requests/requests'
|
||||||
import { makeGetRequest } from '../requests/requests'
|
|
||||||
|
|
||||||
function getAccountBlocklistByAccount (
|
function getAccountBlocklistByAccount (
|
||||||
url: string,
|
url: string,
|
||||||
|
|
Loading…
Add table
Reference in a new issue