Skip to content

Commit 5ecf45d

Browse files
authored
Merge pull request #4005 from dlabrecq/sort
Add sorting for usage column
2 parents 83dfdbc + 9e77979 commit 5ecf45d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/routes/details/awsBreakdown/instances/instancesTable.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,10 @@ const InstancesTable: React.FC<InstancesTableProps> = ({
113113
},
114114
{
115115
id: InstanceTableColumnIds.usage,
116+
orderBy: 'usage',
116117
name: intl.formatMessage(messages.detailsResourceNames, { value: 'usage' }),
117118
style: styles.managedColumn,
119+
...(computedItems.length && { isSortable: true }),
118120
},
119121
{
120122
orderBy: 'cost',

0 commit comments

Comments
 (0)