Skip to content

fix(ToolingTable): Increase tool column width #1674

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/tools/components/ToolingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const ToolingTable = ({
transform={transform}
setTransform={setTransform}
attributes={{
style: { flexBasis: '240px', flexShrink: 0, flexGrow: 0 },
style: { flexBasis: '260px', flexShrink: 0, flexGrow: 0 },
}}
>
Name
Expand Down Expand Up @@ -189,9 +189,9 @@ const ToolingTable = ({
>
<TableCell
attributes={{
className: `${tool.name.split(' ').some((segment) => segment.length > 25) ? 'break-all' : ''} gap-x-2 gap-y-1`,
className: `${tool.name.split(' ').some((segment) => segment.length > 25) ? 'break-word' : ''} gap-x-2 gap-y-1`,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: Nevermind, I saw now why you need it. is because some packages don't have any space or -, like "LateApexEarlySpeed.Json.Schema". Closing this then

style: {
flexBasis: '240px',
flexBasis: '260px',
flexShrink: 1,
flexGrow: 0,
},
Expand Down
Loading