mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	fix: User Registration Form Validation and Other Setup Wizard Things (#5920)
This commit is contained in:
		| @@ -4,7 +4,7 @@ import type { AutoFormItems } from "~/types/auto-forms"; | ||||
| export const useCommonSettingsForm = () => { | ||||
|   const i18n = useI18n(); | ||||
|  | ||||
|   const commonSettingsForm: AutoFormItems = [ | ||||
|   const commonSettingsForm = computed<AutoFormItems>(() => [ | ||||
|     { | ||||
|       section: i18n.t("profile.group-settings"), | ||||
|       label: i18n.t("group.enable-public-access"), | ||||
| @@ -21,7 +21,7 @@ export const useCommonSettingsForm = () => { | ||||
|       type: fieldTypes.BOOLEAN, | ||||
|       rules: ["required"], | ||||
|     }, | ||||
|   ]; | ||||
|   ]); | ||||
|  | ||||
|   return { | ||||
|     commonSettingsForm, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user