Skip to content

Commit

Permalink
[#5344] improvement(web): Show the type and storage location msg for …
Browse files Browse the repository at this point in the history
…fileset (#5345)

### What changes were proposed in this pull request?
<img width="1304" alt="image"
src="https://github.com/user-attachments/assets/69c5124c-c024-4fdc-a9e4-8aa5260a02ac">

### Why are the changes needed?
N/A

Fix: #5344

### Does this PR introduce _any_ user-facing change?
N/A

### How was this patch tested?
manually
  • Loading branch information
LauraXia123 authored Oct 29, 2024
1 parent f265e50 commit 5502c1a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions web/web/src/components/DetailsDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ const DetailsDrawer = props => {
</Grid>
)}

{drawerData.storageLocation && (
<Grid item xs={12} md={6} sx={{ mb: [0, 5] }}>
<Typography variant='body2' sx={{ mb: 2 }}>
Storage Location
</Typography>
{renderFieldText({ value: drawerData.storageLocation })}
</Grid>
)}

<Grid item xs={12} sx={{ mb: [0, 5] }}>
<Typography variant='body2' sx={{ mb: 2 }}>
Comment
Expand Down

0 comments on commit 5502c1a

Please sign in to comment.