mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
Fix bug causing settings name to sometimes be improperly copied. (#56948)
* Fix bug causing settigns name to sometimes be improperly copied. * Filter arros out on search * revernt change to name text * more aggressive filtering of the arrow symbols
This commit is contained in:
parent
75f49fcd33
commit
eb0b066ab7
1 changed files with 1 additions and 1 deletions
|
@ -770,7 +770,7 @@ export class SettingsEditor2 extends BaseEditor {
|
|||
const query = this.searchWidget.getValue().trim();
|
||||
if (query === '') { this.countElement.style.display = 'none'; this.noResultsMessage.style.display = 'none'; }
|
||||
this.delayedFilterLogging.cancel();
|
||||
this.triggerSearch(query).then(() => {
|
||||
this.triggerSearch(query.replace(/›/g, ' ')).then(() => {
|
||||
if (query && this.searchResultModel) {
|
||||
this.delayedFilterLogging.trigger(() => this.reportFilteringUsed(query, this.searchResultModel.getUniqueResults()));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue