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