Skip to content
Snippets Groups Projects
Commit 5e59d13b authored by Nico Vermaas's avatar Nico Vermaas
Browse files

user friendly presentation of shopping basket items (apertif and astron-vo) (jira ticket 243)

parent decb8586
No related branches found
No related tags found
1 merge request!35Dev nico
Pipeline #15045 passed
......@@ -3,13 +3,13 @@ import React, { useContext, useState, useEffect } from "react";
export function renderHeaderApertif() {
return (<>
<th>Name</th>
<th>RA</th>
<th>Dec</th>
<th>fov</th>
<th>Dataset ID</th>
<th>DataProduct Type</th>
<th>DataProduct SubType</th>
<th style={{width: '10%'}}>Name</th>
<th style={{width: '5%'}}>RA</th>
<th style={{width: '5%'}}>Dec</th>
<th style={{width: '5%'}}>fov</th>
<th style={{width: '10%'}}>DataProduct Type</th>
<th style={{width: '10%'}}>DataProduct SubType</th>
<th style={{width: '5%'}}>Dataset ID</th>
</>
);
}
......@@ -21,9 +21,9 @@ export function renderRowApertif(result) {
<td>{Number(result.RA).toFixed(1)}</td>
<td>{Number(result.dec).toFixed(1)}</td>
<td>{Number(result.fov).toFixed(1)}</td>
<td>{result.datasetID}</td>
<td>{result.dataProductType}</td>
<td>{result.dataProductSubType}</td>
<td>{result.datasetID}</td>
</>
);
}
......@@ -3,13 +3,13 @@ import React, { useContext, useState, useEffect } from "react";
export function renderHeaderAstronVO() {
return (<>
<th>Collection</th>
<th>RA</th>
<th>Dec</th>
<th>fov</th>
<th>Data Product Type</th>
<th>Calibration Level</th>
<th>Size</th>
<th style={{width: '10%'}}>Collection</th>
<th style={{width: '5%'}}>RA</th>
<th style={{width: '5%'}}>Dec</th>
<th style={{width: '5%'}}>fov</th>
<th style={{width: '10%'}}>DataProduct Type</th>
<th style={{width: '10%'}}>Calibration Level</th>
<th style={{width: '5%'}}>Size</th>
</>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment