From a378a52b338e75f805f67fe397bce0bc0036f42d Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Fri, 26 Feb 2021 10:30:48 -0800 Subject: [PATCH] fix sorting issue in azure resource grid (#14459) --- extensions/azurecore/src/azureDataGridProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/azurecore/src/azureDataGridProvider.ts b/extensions/azurecore/src/azureDataGridProvider.ts index c81d572727..4f46a2fc97 100644 --- a/extensions/azurecore/src/azureDataGridProvider.ts +++ b/extensions/azurecore/src/azureDataGridProvider.ts @@ -76,7 +76,7 @@ export class AzureDataGridProvider implements azdata.DataGridProvider { { id: 'icon', type: 'image', field: 'iconPath', name: '', width: 25, sortable: false, filterable: false, resizable: false, tooltip: loc.typeIcon }, { id: 'name', type: 'text', field: 'name', name: loc.name, width: 150 }, { id: 'type', type: 'text', field: 'typeDisplayName', name: loc.resourceType, width: 150 }, - { id: 'type', type: 'text', field: 'resourceGroup', name: loc.resourceGroup, width: 150 }, + { id: 'resourceGroup', type: 'text', field: 'resourceGroup', name: loc.resourceGroup, width: 150 }, { id: 'location', type: 'text', field: 'locationDisplayName', name: loc.location, width: 150 }, { id: 'subscriptionId', type: 'text', field: 'subscriptionName', name: loc.subscription, width: 150 } ];