Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Oct 30, 2024
1 parent 59b836b commit 455feaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/components/charts/sunburst/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ export const SunburstChart: React.FC<SunburstProps> = (
},
}}
>
<Typography variant="h5">{props.centerLabel}</Typography>
<Typography variant="h5" fontWeight="400">
<Typography variant="h4">{props.centerLabel}</Typography>
<Typography variant="h4" fontWeight="400">
{formatFinancialValue(centerValue)}
</Typography>
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const GrantImplementationPageBlock1: React.FC<
sx={{
"> div": {
width: "calc(100% / 3)",
padding: "0 17px",
padding: "0 10px",
"&:not(:last-child)": {
borderRight: "1px solid #DFE3E5",
},
Expand Down
4 changes: 2 additions & 2 deletions src/app/pages/datasets/resource-mobilization/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const ResourceMobilizationPage: React.FC = () => {
}
if (
appliedFiltersData.replenishmentPeriods.length > 0 &&
location.search.includes("periods=")
location.search.includes("replenishmentPeriods=")
) {
value += `${value.length > 0 ? "&" : ""}periods=${encodeURIComponent(
appliedFiltersData.replenishmentPeriods.join(",")
Expand Down Expand Up @@ -292,7 +292,7 @@ export const ResourceMobilizationPage: React.FC = () => {
}
if (
(appliedFiltersData.replenishmentPeriods.length > 0 &&
location.search.includes("periods=")) ||
location.search.includes("replenishmentPeriods=")) ||
chartAppliedFiltersData.replenishmentPeriods.length > 0
) {
value += `${value.length > 0 ? "&" : ""}periods=${encodeURIComponent(
Expand Down

0 comments on commit 455feaa

Please sign in to comment.