Skip to content

Commit 8c58d8c

Browse files
committed
style: update PodsVolumeList component to limit width of volume name display for improved layout
1 parent 8c7589f commit 8c58d8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/block/pods-volume-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export default function PodsVolumeList({ pods }: NodeVolumeListProps) {
144144
return (
145145
<TableRow key={`${volume.nickName}-${volume.name}`}>
146146
<TableCell>
147-
<div className="space-y-1 w-[200px] overflow-scroll">
147+
<div className="space-y-1 max-w-[200px] overflow-scroll">
148148
<Link
149149
to={`${PREFIX}/pods?pod=${volume.nickName}`}
150150
className="hover:underline font-medium text-sm"

0 commit comments

Comments
 (0)