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

add QueryResults page

parent 45780e8d
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ function Main () { ...@@ -84,7 +84,7 @@ function Main () {
</Switch> </Switch>
</div> </div>
<footer><small>ASTRON - version 0.4.2 - 14 feb 2020</small></footer> <footer><small>ASTRON - version 0.4.3 - 17 feb 2020</small></footer>
</Router> </Router>
); );
} }
......
...@@ -118,6 +118,7 @@ export default function DataSetsGrid(props) { ...@@ -118,6 +118,7 @@ export default function DataSetsGrid(props) {
data={props.data} data={props.data}
conditionalRowStyles={conditionalRowStyles} conditionalRowStyles={conditionalRowStyles}
pagination pagination
paginationPerPage="50"
striped={true} striped={true}
customStyles={customStyles} customStyles={customStyles}
......
...@@ -39,7 +39,7 @@ export default function QueryOutputResultsGrid(props) { ...@@ -39,7 +39,7 @@ export default function QueryOutputResultsGrid(props) {
function drawResult(row) { function drawResult(row) {
let renderResult let renderResult
if (row.result.includes('http')) { if (row.result.includes('http')) {
return <a href={row.result} > return <a href={row.result} target="_blank">
{row.result}&nbsp; {row.result}&nbsp;
</a> </a>
} else { } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment