diff --git a/web/source/settings/views/user/profile.tsx b/web/source/settings/views/user/profile.tsx index 6d476f80f..18c96e869 100644 --- a/web/source/settings/views/user/profile.tsx +++ b/web/source/settings/views/user/profile.tsx @@ -17,14 +17,13 @@ along with this program. If not, see . */ -import React from "react"; +import React, { useMemo } from "react"; import { useTextInput, useFileInput, useBoolInput, useFieldArrayInput, - useRadioInput } from "../../lib/form"; import useFormSubmit from "../../lib/form/submit"; @@ -35,7 +34,7 @@ import { TextArea, FileInput, Checkbox, - RadioGroup + Select } from "../../components/form/inputs"; import FormWithData from "../../lib/form/form-with-data"; @@ -81,15 +80,28 @@ function UserProfileForm({ data: profile }) { // Parse out available theme options into nice format. const { data: themes } = useAccountThemesQuery(); - let themeOptions = { "": "Default" }; - themes?.forEach((theme) => { - let key = theme.file_name; - let value = theme.title; - if (theme.description) { - value += " - " + theme.description; - } - themeOptions[key] = value; - }); + const themeOptions = useMemo(() => { + let themeOptions = [ + + ]; + + themes?.forEach((theme) => { + const value = theme.file_name; + let text = theme.title; + if (theme.description) { + text += " - " + theme.description; + } + themeOptions.push( + + ); + }); + + return themeOptions; + }, [themes]); const form = { avatar: useFileInput("avatar", { withPreview: true }), @@ -108,10 +120,7 @@ function UserProfileForm({ data: profile }) { length: instanceConfig.maxPinnedFields }), customCSS: useTextInput("custom_css", { source: profile, nosubmit: !instanceConfig.allowCustomCSS }), - theme: useRadioInput("theme", { - source: profile, - options: themeOptions, - }), + theme: useTextInput("theme", { source: profile }), }; const [submitForm, result] = useFormSubmit(form, useUpdateCredentialsMutation(), { @@ -169,9 +178,10 @@ function UserProfileForm({ data: profile }) {
After choosing theme and saving, open your profile and refresh to see changes. - {themeOptions}} />