widget.startsWith(item.key) || widget === item.id
);
- const widgetIcon = customizeMyDataPageClassBase.getWidgetIconFromKey(
- item.key
- );
-
return (
handleSidebarClick(item.key)}>
- {isWidgetItem && widgetIcon && (
-
-
-
- )}
{startCase(item.label)}
{isAllWidgetsTab && (
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/MyData/FeedWidget/FeedWidget.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/MyData/FeedWidget/FeedWidget.component.tsx
index 8ddca7a1de5..94faf45b938 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/MyData/FeedWidget/FeedWidget.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/MyData/FeedWidget/FeedWidget.component.tsx
@@ -103,7 +103,7 @@ const MyFeedWidgetInternal = ({
return (
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/MyData/MyDataWidget/MyDataWidget.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/MyData/MyDataWidget/MyDataWidget.component.tsx
index f7b4dbcead2..d7824583519 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/MyData/MyDataWidget/MyDataWidget.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/MyData/MyDataWidget/MyDataWidget.component.tsx
@@ -19,7 +19,11 @@ import { useTranslation } from 'react-i18next';
import { Link } from 'react-router-dom';
import { ReactComponent as MyDataIcon } from '../../../assets/svg/ic-my-data.svg';
import { ReactComponent as NoDataAssetsPlaceholder } from '../../../assets/svg/no-data-placeholder.svg';
-import { INITIAL_PAGING_VALUE, PAGE_SIZE } from '../../../constants/constants';
+import {
+ INITIAL_PAGING_VALUE,
+ PAGE_SIZE,
+ ROUTES,
+} from '../../../constants/constants';
import {
applySortToData,
getSortField,
@@ -182,18 +186,13 @@ const MyDataWidgetInternal = ({
const emptyState = useMemo(
() => (
}
- title={t('message.curate-your-data-view')}
+ title={t('label.no-records')}
/>
),
[]
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/MyData/RightSidebar/FollowingWidget.tsx b/openmetadata-ui/src/main/resources/ui/src/components/MyData/RightSidebar/FollowingWidget.tsx
index a2e1812e848..bff355024e8 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/MyData/RightSidebar/FollowingWidget.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/MyData/RightSidebar/FollowingWidget.tsx
@@ -27,7 +27,6 @@ import {
getSortOrder,
} from '../../../constants/Widgets.constant';
import { SIZE } from '../../../enums/common.enum';
-import { EntityTabs } from '../../../enums/entity.enum';
import { SearchIndex } from '../../../enums/search.enum';
import { EntityReference } from '../../../generated/entity/type';
import { useApplicationStore } from '../../../hooks/useApplicationStore';
@@ -46,6 +45,7 @@ import { showErrorToast } from '../../../utils/ToastUtils';
import EntitySummaryDetails from '../../common/EntitySummaryDetails/EntitySummaryDetails';
import { OwnerLabel } from '../../common/OwnerLabel/OwnerLabel.component';
import { SourceType } from '../../SearchedData/SearchedData.interface';
+import { UserPageTabs } from '../../Settings/Users/Users.interface';
import WidgetEmptyState from '../Widgets/Common/WidgetEmptyState/WidgetEmptyState';
import WidgetFooter from '../Widgets/Common/WidgetFooter/WidgetFooter';
import WidgetHeader from '../Widgets/Common/WidgetHeader/WidgetHeader';
@@ -253,7 +253,7 @@ function FollowingWidget({