Skip to content

Commit 359a813

Browse files
committed
download info
1 parent 37706a7 commit 359a813

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/app/components/DownloadDataDialog/index.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,18 @@ const DownloadDataDialog = (props: DownloadDataDialogProps) => {
211211
<Grid xs={28}>
212212
<LinkList>
213213
{links.map((x: any) => (
214-
<LinkListItem className="icon-left" href={x.url}>
214+
<LinkListItem
215+
className="icon-left"
216+
href={
217+
x.url +
218+
'&is_public_sector=' +
219+
dataSet.current.is_public_sector +
220+
'&entity_name=' +
221+
dataSet.current.entity_name +
222+
'&download_reason=' +
223+
dataSet.current.download_reason
224+
}
225+
>
215226
<Icon color="primary" icon="it-chevron-right" aria-hidden />
216227
{x.label}
217228
</LinkListItem>

src/app/components/MultiRadioSelect/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ export function MultiRadioSelect(props: MultiRadioSelectProps) {
253253
disableGutters
254254
sx={{
255255
marginBottom: row.multicol?.includes(index + 1)
256-
? 'calc(50vh - 100px)'
256+
? '0'
257257
: '0',
258258
}}
259259
disabled={

0 commit comments

Comments
 (0)