splitted to account.profile settings group

This commit is contained in:
srgooglo 2022-03-15 03:14:13 +01:00
parent b48c48a0c4
commit 36d28e7b06
2 changed files with 16 additions and 4 deletions

View File

@ -85,16 +85,24 @@ export default [
"debounced": true, "debounced": true,
}, },
{ {
"id": "Avatar", "id": "avatar",
"group": "account.basicInfo", "group": "account.profile",
"type": "ImageUpload", "type": "ImageUpload",
"icon": "Image", "icon": "Image",
"title": "Avatar", "title": "Avatar",
"description": "Change your avatar", "description": "Change your avatar",
}, },
{
"id": "cover",
"group": "account.profile",
"type": "ImageUpload",
"icon": "Image",
"title": "Cover",
"description": "Change your cover",
},
{ {
"id": "primaryBadge", "id": "primaryBadge",
"group": "account.basicInfo", "group": "account.profile",
"type": "Select", "type": "Select",
"icon": "Tag", "icon": "Tag",
"title": "Primary badge", "title": "Primary badge",
@ -102,7 +110,7 @@ export default [
}, },
{ {
"id": "description", "id": "description",
"group": "account.basicInfo", "group": "account.profile",
"type": "TextArea", "type": "TextArea",
"icon": "Edit3", "icon": "Edit3",
"title": "Description", "title": "Description",

View File

@ -18,5 +18,9 @@
"account.basicInfo": { "account.basicInfo": {
"title": "Basic Information", "title": "Basic Information",
"icon": "Info" "icon": "Info"
},
"account.profile": {
"title": "Profile",
"icon": "Book"
} }
} }