File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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 = {
You can’t perform that action at this time.
0 commit comments