Skip to content

Commit

Permalink
fix: Solver selection in ProblemList not updating properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Elscrux committed Aug 27, 2024
1 parent b582b52 commit 960fe34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/solvers/Graph/ProblemList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const ProblemList = (props: {
padding="0px"
margin="0px"
fontSize="2xs"
defaultValue={problemDto.solverId}
value={problemDto.solverId ?? ""}
onChange={(e) => {
patchProblem(problemDto.typeId, problemDto.id, {
solverId: e.target.value,
Expand Down

0 comments on commit 960fe34

Please sign in to comment.