Skip to content

Commit 298829a

Browse files
committed
increase activity chart size
1 parent e722fd5 commit 298829a

File tree

1 file changed

+2
-2
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index

1 file changed

+2
-2
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.errors._index/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ function ErrorActivityGraph({ activity }: { activity: ErrorOccurrenceActivity })
661661

662662
return (
663663
<div className="flex items-start gap-1.5">
664-
<div className="h-6 w-[5.125rem] rounded-sm">
664+
<div className="h-6 w-[7rem] rounded-sm">
665665
<ResponsiveContainer width="100%" height="100%">
666666
<BarChart data={activity} margin={{ top: 0, right: 0, left: 0, bottom: 0 }}>
667667
<YAxis domain={[0, maxCount || 1]} hide />
@@ -713,7 +713,7 @@ const ErrorActivityTooltip = ({ active, payload }: TooltipProps<number, string>)
713713

714714
function ErrorActivityBlankState() {
715715
return (
716-
<div className="flex h-6 w-[5.125rem] items-end gap-px rounded-sm">
716+
<div className="flex h-6 w-[7rem] items-end gap-px rounded-sm">
717717
{[...Array(24)].map((_, i) => (
718718
<div key={i} className="h-full flex-1 bg-[#212327]" />
719719
))}

0 commit comments

Comments
 (0)