You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/preferences/browser/settingsEditor2.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1189,6 +1189,7 @@ export class SettingsEditor2 extends EditorPane {
1189
1189
typeSettingsEditorModifiedSettingEvent={
1190
1190
key: string;
1191
1191
groupId: string|undefined;
1192
+
providerName: string|undefined;
1192
1193
nlpIndex: number|undefined;
1193
1194
displayIndex: number|undefined;
1194
1195
showConfiguredOnly: boolean;
@@ -1198,6 +1199,7 @@ export class SettingsEditor2 extends EditorPane {
1198
1199
typeSettingsEditorModifiedSettingClassification={
1199
1200
key: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The setting that is being modified.'};
1200
1201
groupId: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Whether the setting is from the local search or remote search provider, if applicable.'};
1202
+
providerName: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The name of the remote search provider, if applicable.'};
1201
1203
nlpIndex: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The index of the setting in the remote search provider results, if applicable.'};
1202
1204
displayIndex: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'The index of the setting in the combined search results, if applicable.'};
1203
1205
showConfiguredOnly: {classification: 'SystemMetaData';purpose: 'FeatureInsight';comment: 'Whether the user is in the modified view, which shows configured settings only.'};
@@ -1208,6 +1210,7 @@ export class SettingsEditor2 extends EditorPane {
1208
1210
};
1209
1211
1210
1212
letgroupId: string|undefined=undefined;
1213
+
letproviderName: string|undefined=undefined;
1211
1214
letnlpIndex: number|undefined=undefined;
1212
1215
letdisplayIndex: number|undefined=undefined;
1213
1216
if(props.searchResults){
@@ -1220,6 +1223,7 @@ export class SettingsEditor2 extends EditorPane {
0 commit comments