diff --git a/changelog.d/20231013_110048_klakhov_remove_need_help.md b/changelog.d/20231013_110048_klakhov_remove_need_help.md new file mode 100644 index 000000000000..c08a984c754e --- /dev/null +++ b/changelog.d/20231013_110048_klakhov_remove_need_help.md @@ -0,0 +1,4 @@ +### Removed + +- Removed gitter link from about modal + () diff --git a/cvat-ui/src/components/header/header.tsx b/cvat-ui/src/components/header/header.tsx index 340f8058b2b0..790369c637d3 100644 --- a/cvat-ui/src/components/header/header.tsx +++ b/cvat-ui/src/components/header/header.tsx @@ -142,7 +142,7 @@ function HeaderComponent(props: Props): JSX.Element { } = props; const { - CHANGELOG_URL, LICENSE_URL, GITTER_URL, GITHUB_URL, GUIDE_URL, DISCORD_URL, + CHANGELOG_URL, LICENSE_URL, GITHUB_URL, GUIDE_URL, DISCORD_URL, } = config; const history = useHistory(); @@ -184,20 +184,13 @@ function HeaderComponent(props: Props): JSX.Element { ), 10]); - aboutLinks.push([( - - - Need help? - - - ), 20]); aboutLinks.push([( Find us on Discord - ), 30]); + ), 20]); aboutLinks.push(...aboutPlugins.map(({ component: Component, weight }, index: number) => ( [, weight] as [JSX.Element, number] ))); diff --git a/cvat-ui/src/config.tsx b/cvat-ui/src/config.tsx index 55822eb042c4..8a1001aff3a2 100644 --- a/cvat-ui/src/config.tsx +++ b/cvat-ui/src/config.tsx @@ -9,7 +9,6 @@ const UNDEFINED_ATTRIBUTE_VALUE = '__undefined__'; const NO_BREAK_SPACE = '\u00a0'; const CHANGELOG_URL = 'https://github.com/opencv/cvat/blob/develop/CHANGELOG.md'; const LICENSE_URL = 'https://github.com/opencv/cvat/blob/develop/LICENSE'; -const GITTER_URL = 'https://gitter.im/opencv-cvat'; const DISCORD_URL = 'https://discord.gg/fNR3eXfk6C'; const GITHUB_URL = 'https://github.com/opencv/cvat'; const GITHUB_IMAGE_URL = 'https://github.com/opencv/cvat/raw/develop/site/content/en/images/cvat.jpg'; @@ -133,7 +132,6 @@ export default { NO_BREAK_SPACE, CHANGELOG_URL, LICENSE_URL, - GITTER_URL, DISCORD_URL, GITHUB_URL, GITHUB_IMAGE_URL,