Skip to content

Commit

Permalink
Merge pull request #129 from ssi-dk/ejl/impl-resfinderFeedback
Browse files Browse the repository at this point in the history
Resfinder feedback
  • Loading branch information
emlunde authored Dec 12, 2024
2 parents ea068e3 + 245a1d2 commit 0013c1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/app/analysis/resistance/resistance-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const ResistanceTable = (props: Props) => {
<Table variant="unstyled" size="sm">
<Thead style={{ backgroundColor: "#90cdf4" }}>
<Tr>
<Th colSpan={2} style={{borderRight: "1px solid black" }}>&nbsp;</Th>
<Th colSpan={2} style={ {borderRight: "1px solid black" } } >&nbsp;</Th>
{Object.keys(amrClasses).map((amrClass, index) => {
return (
<Th key={`amr-${index}`} colSpan={amrClasses[amrClass].length} style={{ borderLeft: "1px solid black", borderRight: "1px solid black" }}>
Expand All @@ -135,7 +135,7 @@ export const ResistanceTable = (props: Props) => {
</Tr>
<Tr>
<Th>Sample</Th>
<Th style={{borderRight: "1px solid black" }}>Summary</Th>
<Th style={ {borderRight: "1px solid black" } } >Summary</Th>
{Object.values(amrClasses).map((phenotypes, index) => {
return phenotypes.map((phenotype, i) => {
const isLast = i === phenotypes.length - 1;
Expand Down

0 comments on commit 0013c1d

Please sign in to comment.