[develop | DONE | FIXED] : in home and subjects page remove quoted from the advanced search link to make it work

This commit is contained in:
argirok 2023-12-01 18:06:41 +02:00
parent 89f8011e76
commit c51efd5713
2 changed files with 2 additions and 2 deletions

View File

@ -478,7 +478,7 @@ export class CommunityComponent {
} }
createParams(param) { createParams(param) {
return StringUtils.quote(StringUtils.URIEncode(param)); return StringUtils.URIEncode(param);
} }
private setActiveTab(entityType: string) { private setActiveTab(entityType: string) {

View File

@ -382,7 +382,7 @@ export class SubjectsComponent {
} }
createParams(param) { createParams(param) {
return StringUtils.quote(StringUtils.URIEncode(param)); return StringUtils.URIEncode(param);
} }
ngOnDestroy() { ngOnDestroy() {