diff --git a/catalog-rest-service/src/main/resources/ui/jest.config.js b/catalog-rest-service/src/main/resources/ui/jest.config.js index c28244a6451..e3006d19730 100644 --- a/catalog-rest-service/src/main/resources/ui/jest.config.js +++ b/catalog-rest-service/src/main/resources/ui/jest.config.js @@ -17,7 +17,7 @@ module.exports = { // Project name - displayName: '@collate/openmetadata', + displayName: '@openmetadata', // Working directory roots: ['/src'], diff --git a/catalog-rest-service/src/main/resources/ui/src/assets/img/welcome-popper-icon.png b/catalog-rest-service/src/main/resources/ui/src/assets/img/welcome-popper-icon.png new file mode 100644 index 00000000000..d4d4063957f Binary files /dev/null and b/catalog-rest-service/src/main/resources/ui/src/assets/img/welcome-popper-icon.png differ diff --git a/catalog-rest-service/src/main/resources/ui/src/components/Modals/FirstTimeUserModal/FirstTimeUserModal.tsx b/catalog-rest-service/src/main/resources/ui/src/components/Modals/FirstTimeUserModal/FirstTimeUserModal.tsx index 55fd132f005..b47cb0ac473 100644 --- a/catalog-rest-service/src/main/resources/ui/src/components/Modals/FirstTimeUserModal/FirstTimeUserModal.tsx +++ b/catalog-rest-service/src/main/resources/ui/src/components/Modals/FirstTimeUserModal/FirstTimeUserModal.tsx @@ -43,14 +43,10 @@ export const FirstTimeUserModal: FunctionComponent = ({ className="tw-modal-container tw-modal-confetti tw-max-w-xl tw-max-h-90vh" style={{ backgroundImage: active === 0 ? `url(${BGConfetti})` : '' }}>
-
+
{active === 0 ? ( // TODO: Replace it with Party popper icon - + ) : ( = ({ width="50" /> )} -

+

Welcome to OpenMetadata

diff --git a/catalog-rest-service/src/main/resources/ui/src/components/app-bar/SearchOptions.tsx b/catalog-rest-service/src/main/resources/ui/src/components/app-bar/SearchOptions.tsx index ffeaaff5a98..36cefe957e6 100644 --- a/catalog-rest-service/src/main/resources/ui/src/components/app-bar/SearchOptions.tsx +++ b/catalog-rest-service/src/main/resources/ui/src/components/app-bar/SearchOptions.tsx @@ -66,7 +66,7 @@ const SearchOptions: FunctionComponent = ({ setIsOpen(false)}> {searchText} diff --git a/catalog-rest-service/src/main/resources/ui/src/utils/SvgUtils.tsx b/catalog-rest-service/src/main/resources/ui/src/utils/SvgUtils.tsx index 448e7c9701d..57fb5eec067 100644 --- a/catalog-rest-service/src/main/resources/ui/src/utils/SvgUtils.tsx +++ b/catalog-rest-service/src/main/resources/ui/src/utils/SvgUtils.tsx @@ -1,5 +1,6 @@ import React, { FunctionComponent } from 'react'; import IconGoogle from '../assets/img/google-icon.png'; +import IconWelcomePopper from '../assets/img/welcome-popper-icon.png'; import IconAPI from '../assets/svg/api.svg'; import IconSuccess from '../assets/svg/check.svg'; import IconAsstest from '../assets/svg/data-assets.svg'; @@ -57,6 +58,7 @@ type Props = { export const Icons = { LOGO: 'logo', LOGO_SMALL: 'logo-small', + WELCOME_POPPER: 'welcome-popper', GOOGLE_ICON: 'google-icon', EDIT: 'icon-edit', EXPLORE: 'icon-explore', @@ -153,6 +155,10 @@ const SVGIcons: FunctionComponent = ({ case Icons.LOGO_SMALL: IconComponent = LogoMonogram; + break; + case Icons.WELCOME_POPPER: + IconComponent = IconWelcomePopper; + break; case Icons.GOOGLE_ICON: IconComponent = IconGoogle; diff --git a/catalog-rest-service/src/main/resources/ui/webpack.config.dev.js b/catalog-rest-service/src/main/resources/ui/webpack.config.dev.js index 185b64a8162..193ebfe9b04 100644 --- a/catalog-rest-service/src/main/resources/ui/webpack.config.dev.js +++ b/catalog-rest-service/src/main/resources/ui/webpack.config.dev.js @@ -165,7 +165,7 @@ module.exports = { }), // Build progress bar new WebpackBar({ - name: '@collate/openmetadata [dev]', + name: '@openmetadata [dev]', color: '#54BAC9', }), new MiniCssExtractPlugin({ diff --git a/catalog-rest-service/src/main/resources/ui/webpack.config.prod.js b/catalog-rest-service/src/main/resources/ui/webpack.config.prod.js index 5d2abb8fef2..4468c605f24 100644 --- a/catalog-rest-service/src/main/resources/ui/webpack.config.prod.js +++ b/catalog-rest-service/src/main/resources/ui/webpack.config.prod.js @@ -158,7 +158,7 @@ module.exports = { }), // Build progress bar new WebpackBar({ - name: '@collate/openmetadata [prod]', + name: '@openmetadata [prod]', color: '#15C39B', }), new MiniCssExtractPlugin({