Skip to content

Commit 5787534

Browse files
fix: [M3-9060] - Object Storage endpoint_type sorting (#11472)
* fix: [M3-9060] - Object Storage sorting * Add changeset --------- Co-authored-by: Jaalah Ramos <[email protected]>
1 parent a0e531d commit 5787534

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@linode/manager": Fixed
3+
---
4+
5+
Object Storage `endpoint_type` sorting ([#11472](https://github.com/linode/manager/pull/11472))

packages/manager/src/features/ObjectStorage/BucketLanding/BucketTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ export const BucketTable = (props: Props) => {
7272
{isEndpointTypeAvailable && (
7373
<Hidden lgDown>
7474
<TableSortCell
75-
active={orderBy === 'endpointType'}
75+
active={orderBy === 'endpoint_type'}
7676
data-qa-created
7777
direction={order}
7878
handleClick={handleOrderChange}
79-
label="endpointType"
79+
label="endpoint_type"
8080
>
8181
Endpoint Type
8282
</TableSortCell>

0 commit comments

Comments
 (0)