mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-04 01:44:18 +01: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:
@@ -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()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user