diff --git a/src/components/solvers/Graph/ProblemDetails.tsx b/src/components/solvers/Graph/ProblemDetails.tsx index 57c0df2..0a206c7 100644 --- a/src/components/solvers/Graph/ProblemDetails.tsx +++ b/src/components/solvers/Graph/ProblemDetails.tsx @@ -68,9 +68,7 @@ export const ProblemDetails = (props: { problemDto: ProblemDto }) => { {solver && ( - - Solver Settings:{" "} - + Solver Settings: { @@ -83,7 +81,7 @@ export const ProblemDetails = (props: { problemDto: ProblemDto }) => { No subroutines ) : ( - Sub Routines: + Sub Routines: {props.problemDto.subProblems.map((subProblem) => getAccordionItem( @@ -95,7 +93,10 @@ export const ProblemDetails = (props: { problemDto: ProblemDto }) => { )} {props.problemDto.solution !== null && ( - + + Solution: + + )} );