diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-25 21:04:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 21:04:50 -0500 |
commit | fc19ffba3881cf38d8a6a47a62c6ed5feff5aa4b (patch) | |
tree | 626c8e22de2cb77fb56dfaa0b1ecc7528e469e27 /src/view/com/util/forms/RadioGroup.tsx | |
parent | 9b86cb5c36da993c99dfa36760667bded4c71b15 (diff) | |
download | voidsky-fc19ffba3881cf38d8a6a47a62c6ed5feff5aa4b.tar.zst |
Update report modal to use new groupings (close [APP-567]) (#533)
Diffstat (limited to 'src/view/com/util/forms/RadioGroup.tsx')
-rw-r--r-- | src/view/com/util/forms/RadioGroup.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/forms/RadioGroup.tsx b/src/view/com/util/forms/RadioGroup.tsx index 071540b73..14599e649 100644 --- a/src/view/com/util/forms/RadioGroup.tsx +++ b/src/view/com/util/forms/RadioGroup.tsx @@ -5,7 +5,7 @@ import {ButtonType} from './Button' import {s} from 'lib/styles' export interface RadioGroupItem { - label: string + label: string | JSX.Element key: string } |