Skip to content

Commit

Permalink
Fix default location type
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed Dec 4, 2023
1 parent 4a80989 commit 61e0004
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/react/databrowser/buckets/details/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,9 @@ function Overview({ bucket, ingestionStates }: Props) {
<T.Value>
{bucketInfo.locationConstraint || 'us-east-1'}
{' / '}
<LocationType location={bucketInfo.locationConstraint} />
<LocationType
location={bucketInfo.locationConstraint || 'us-east-1'}
/>
</T.Value>
</T.Row>
{features.includes(XDM_FEATURE) && (
Expand Down

0 comments on commit 61e0004

Please sign in to comment.