diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx index c426b35b41a..fb36bb17a5e 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AddDataQualityTest/components/TestCaseForm.tsx @@ -140,9 +140,9 @@ const TestCaseForm: React.FC = ({ ); const name = value.testName?.trim() || - `${columnName ? columnName : table.name}_${snakeCase( - selectedTestType - )}_${cryptoRandomString({ + `${replaceAllSpacialCharWith_( + columnName ? columnName : table.name + )}_${snakeCase(selectedTestType)}_${cryptoRandomString({ length: 4, type: 'alphanumeric', })}`; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/AppBar/Appbar.tsx b/openmetadata-ui/src/main/resources/ui/src/components/AppBar/Appbar.tsx index eecf1f3780d..e0c70824271 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/AppBar/Appbar.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/AppBar/Appbar.tsx @@ -319,9 +319,9 @@ const Appbar: React.FC = (): JSX.Element => { {remainingTeamsCount} {t('label.more')} ) : null} +
) : null} -
); }; diff --git a/openmetadata-ui/src/main/resources/ui/src/components/NotificationBox/NotificationBox.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/NotificationBox/NotificationBox.component.tsx index aad05a5a8fc..275cd772b49 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/NotificationBox/NotificationBox.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/NotificationBox/NotificationBox.component.tsx @@ -13,6 +13,8 @@ import { Badge, Button, List, Tabs, Typography } from 'antd'; import { AxiosError } from 'axios'; +import { ActivityFeedTabs } from 'components/ActivityFeed/ActivityFeedTab/ActivityFeedTab.interface'; +import { EntityTabs } from 'enums/entity.enum'; import { UserProfileTab } from 'enums/user.enum'; import { isEmpty } from 'lodash'; import React, { useCallback, useEffect, useMemo, useState } from 'react'; @@ -52,9 +54,11 @@ const NotificationBox = ({ const [isLoading, setIsLoading] = useState(false); const [viewAllPath, setViewAllPath] = useState( - `${getUserPath(currentUser?.name as string)}/tasks?feedFilter=${ - FeedFilter.ASSIGNED_TO - }` + getUserPath( + currentUser?.name as string, + EntityTabs.ACTIVITY_FEED, + ActivityFeedTabs.TASKS + ) ); const notificationDropDownList = useMemo(() => { diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Services/Services.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Services/Services.tsx index 62573e637a9..729efd42440 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Services/Services.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/Services/Services.tsx @@ -169,7 +169,7 @@ const Services = ({