Skip to content

Commit

Permalink
Make BreakdownModal dimension column use up all remaining width (#4809)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertJoonas authored Nov 14, 2024
1 parent cf4ba66 commit b42ab94
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
Expand Up @@ -135,7 +135,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
Expand Down

0 comments on commit b42ab94

Please sign in to comment.