Settings: changed order of Integration tabs

This commit is contained in:
Alexey Safronov 2024-08-29 12:23:52 +04:00
parent d7b4a03e13
commit b15a633b55

View File

@ -68,16 +68,16 @@ const IntegrationWrapper = (props) => {
name: t("LDAP"), name: t("LDAP"),
content: <LDAP />, content: <LDAP />,
}, },
{
id: "third-party-services",
name: t("Translations:ThirdPartyTitle"),
content: <ThirdParty />,
},
{ {
id: "sso", id: "sso",
name: t("SingleSignOn"), name: t("SingleSignOn"),
content: <SSO />, content: <SSO />,
}, },
{
id: "third-party-services",
name: t("Translations:ThirdPartyTitle"),
content: <ThirdParty />,
},
{ {
id: "smtp-settings", id: "smtp-settings",
name: t("SMTPSettings"), name: t("SMTPSettings"),
@ -102,7 +102,7 @@ const IntegrationWrapper = (props) => {
</Box> </Box>
); );
data.splice(1, 0, { data.splice(2, 0, {
id: "plugins", id: "plugins",
name: pluginLabel, name: pluginLabel,
content: <PluginPage />, content: <PluginPage />,