Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make BreakdownModal dimension column use up all remaining width (#4809)
Browse files Browse the repository at this point in the history
RobertJoonas authored and ruslandoga committed Jan 6, 2025
1 parent a24db55 commit 8905dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/dashboard/stats/modals/breakdown-modal.tsx
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ export default function BreakdownModal<TListItem extends { name: string }>({
{
label: reportInfo.dimensionLabel,
key: 'name',
width: 'w-48 md:w-80 flex items-center break-all',
width: 'w-48 md:w-full flex items-center break-all',
align: 'left',
renderItem: (item) => (
<NameCell

0 comments on commit 8905dce

Please sign in to comment.