From 1fc099db6ef3b6863d6fe2af0d25d557b00e1b1f Mon Sep 17 00:00:00 2001 From: Akmal Isomadinov Date: Mon, 28 Nov 2022 22:51:23 +0500 Subject: [PATCH] Web:Client:Store:AccountsContextOptionsStore Updated ids --- .../src/store/AccountsContextOptionsStore.js | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/client/src/store/AccountsContextOptionsStore.js b/packages/client/src/store/AccountsContextOptionsStore.js index ea3e4bf921..3ddddfc78f 100644 --- a/packages/client/src/store/AccountsContextOptionsStore.js +++ b/packages/client/src/store/AccountsContextOptionsStore.js @@ -39,7 +39,7 @@ class AccountsContextOptionsStore { case "profile": return { - id: "info-profile", + id: "option_profile", key: option, icon: "/static/images/profile.react.svg", label: t("Common:Profile"), @@ -48,7 +48,7 @@ class AccountsContextOptionsStore { case "change-name": return { - id: "info-change-name", + id: "option_change-name", key: option, icon: "images/pencil.react.svg", label: t("PeopleTranslations:NameChangeButton"), @@ -56,7 +56,7 @@ class AccountsContextOptionsStore { }; case "change-email": return { - id: "info-change-email", + id: "option_change-email", key: option, icon: "images/change.mail.react.svg", label: t("PeopleTranslations:EmailChangeButton"), @@ -64,7 +64,7 @@ class AccountsContextOptionsStore { }; case "change-password": return { - id: "info-change-password", + id: "option_change-password", key: option, icon: "images/change.security.react.svg", label: t("PeopleTranslations:PasswordChangeButton"), @@ -72,7 +72,7 @@ class AccountsContextOptionsStore { }; case "change-owner": return { - id: "info-change-owner", + id: "option_change-owner", key: option, icon: "/static/images/refresh.react.svg", label: t("Translations:OwnerChange"), @@ -81,7 +81,7 @@ class AccountsContextOptionsStore { case "enable": return { - id: "info-enable", + id: "option_enable", key: option, icon: "images/enable.react.svg", label: t("PeopleTranslations:EnableUserButton"), @@ -89,7 +89,7 @@ class AccountsContextOptionsStore { }; case "disable": return { - id: "info-disable", + id: "option_disable", key: option, icon: "images/remove.react.svg", label: t("PeopleTranslations:DisableUserButton"), @@ -98,7 +98,7 @@ class AccountsContextOptionsStore { case "reassign-data": return { - id: "info-reassign-data", + id: "option_reassign-data", key: option, icon: "images/ressing_data.react.svg", label: t("PeopleTranslations:ReassignData"), @@ -106,7 +106,7 @@ class AccountsContextOptionsStore { }; case "delete-personal-data": return { - id: "info-delete-personal-data", + id: "option_delete-personal-data", key: option, icon: "images/del_data.react.svg", label: t("PeopleTranslations:RemoveData"), @@ -114,7 +114,7 @@ class AccountsContextOptionsStore { }; case "delete-user": return { - id: "info-delete-user", + id: "option_delete-user", key: option, icon: "images/trash.react.svg", label: t("DeleteProfileEverDialog:DeleteUser"), @@ -123,7 +123,7 @@ class AccountsContextOptionsStore { case "details": return { - id: "info-details", + id: "option_details", key: option, icon: "images/info.react.svg", label: t("Common:Info"), @@ -132,7 +132,7 @@ class AccountsContextOptionsStore { case "invite-again": return { - id: "info-invite-again", + id: "option_invite-again", key: option, icon: "/static/images/invite.again.react.svg", label: t("LblInviteAgain"), @@ -140,7 +140,7 @@ class AccountsContextOptionsStore { }; case "reset-auth": return { - id: "info-reset-auth", + id: "option_reset-auth", key: option, icon: "images/restore.auth.react.svg", label: t("PeopleTranslations:ResetAuth"),