Skip to content

Commit

Permalink
CSS Styling Update (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamputraintan authored Dec 19, 2023
1 parent 562fda1 commit 2a2599c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/components/DisplaySamplesheetResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,13 @@ export default function DisplayResult({ validationResponse }) {
const ssv2 = validationResponse.v2_samplesheet_str;

function DisplayFile({ strFile, filename }) {
const arrayInput = strFile.split("\n");

return (
<>
<pre
className="overflow-auto pe-4 bg-light"
style={{ height: "300px" }}
style={{ maxHeight: "350px" }}
>
{arrayInput.map((val, index) => (
<Row key={index}>{val}</Row>
))}
{strFile}
</pre>
<div className="d-grid mt-2">
<Button
Expand Down

0 comments on commit 2a2599c

Please sign in to comment.