From 71ded9e196eb4eab9c67208d05c2e2c87040c2c2 Mon Sep 17 00:00:00 2001 From: Elscrux Date: Fri, 11 Oct 2024 15:48:54 +0200 Subject: [PATCH] feat: problem detail style changes --- src/components/solvers/Graph/ProblemDetails.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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: + + )} );