Fix errors after merge develop

This commit is contained in:
Timofey Boyko 2024-05-23 19:20:26 +03:00
parent 3bb3c7d5ea
commit 33bc642d0d
5 changed files with 26 additions and 7 deletions

View File

@ -1,13 +1,13 @@
import { EmptyScreenContainer } from "@docspace/shared/components/empty-screen-container";
import { TTranslation } from "@docspace/shared/types";
import EmptyScreenPersonsSvgUrl from "PUBLIC_DIR/images/empty_screen_userfields.svg?url";
import EmptyScreenPersonsSvgUrl from "PUBLIC_DIR/images/empty_screen_oauth.svg?url";
const EmptyScreen = ({ t }: { t: TTranslation }) => {
return (
<EmptyScreenContainer
imageSrc={EmptyScreenPersonsSvgUrl}
imageAlt={"Empty apps list"}
imageAlt="Empty apps list"
headerText={t("NoAuthorizedApps")}
descriptionText={t("ProfileDescription")}
/>

View File

@ -354,6 +354,24 @@ const Viewer = loadable(() =>
),
);
const OAuthCreatePage = loadable(() =>
componentLoader(
() =>
import(
"../pages/PortalSettings/categories/developer-tools/OAuth/OAuthCreatePage"
),
),
);
const OAuthEditPage = loadable(() =>
componentLoader(
() =>
import(
"../pages/PortalSettings/categories/developer-tools/OAuth/OAuthEditPage"
),
),
);
const PortalSettingsRoutes = {
path: "portal-settings/",
element: (

View File

@ -1,9 +1,9 @@
{
"date": "2024220_125512",
"date": "2024523_191527",
"checksums": {
"api.js": "de6605ba5a347753a047d31d2b3daca6",
"api.poly.js": "586ce6831fa68f6bc33486e2cebc856e",
"browserDetector.js": "9e853f32d806dd83652ccc2d67510a84",
"config.json": "3f54595a6ea8207c37f1197069a2db86"
"api.js": "0efbae3383bf6c6b6f26d573eee164d2",
"api.poly.js": "2a2ac2c0e4a7007b61d2d1ff7b00a22e",
"browserDetector.js": "d9387cce805699498e798230a8639c8a",
"config.json": "f68319a04078162e4145c36f4133f19d"
}
}

View File

@ -24,6 +24,7 @@
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import { ReactSVG } from "react-svg";
import styled, { css } from "styled-components";
import { Text } from "../text";

View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB