Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FI-2347: Set radio default input #416

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion client/src/components/InputsModal/InputRadioGroup.tsx
Copy link
Contributor

@alisawallace alisawallace Dec 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed that bug was fixed when repeating the SMART App Launch steps that revealed the bug.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC } from 'react';
import React, { FC, useEffect } from 'react';
import {
FormControl,
FormControlLabel,
Expand Down Expand Up @@ -34,6 +34,12 @@ const InputRadioGroup: FC<InputRadioGroupProps> = ({
inputsMap.get(requirement.name) || requirement.default || firstValue
);

// Set default on mounted
useEffect(() => {
inputsMap.set(requirement.name, value);
setInputsMap(new Map(inputsMap));
}, []);

const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
const value = event.target.value;
setValue(value);
Expand Down
Loading