Skip to content

Commit

Permalink
Revert "[ps-136] Igonre accented characters in vault search (bitwarde…
Browse files Browse the repository at this point in the history
…n#1690)" (bitwarden#1706)

This reverts commit 58d9ac5.
  • Loading branch information
gbubemismith authored May 26, 2022
1 parent eefcda7 commit f195aee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modules/vault-filter/vault-filter.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class VaultFilterComponent extends BaseVaultFilterComponent {
}

searchTextChanged() {
this.onSearchTextChanged.emit(this.searchText.normalize("NFD").replace(/[\u0300-\u036f]/g, ""));
this.onSearchTextChanged.emit(this.searchText);
}

async initCollections() {
Expand Down
1 change: 1 addition & 0 deletions src/app/settings/billing-sync-key.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Component } from "@angular/core";
import { ApiService } from "jslib-common/abstractions/api.service";
import { LogService } from "jslib-common/abstractions/log.service";
import { OrganizationConnectionType } from "jslib-common/enums/organizationConnectionType";
import { Utils } from "jslib-common/misc/utils";
import { BillingSyncConfigApi } from "jslib-common/models/api/billingSyncConfigApi";
import { BillingSyncConfigRequest } from "jslib-common/models/request/billingSyncConfigRequest";
import { OrganizationConnectionRequest } from "jslib-common/models/request/organizationConnectionRequest";
Expand Down

0 comments on commit f195aee

Please sign in to comment.