diff --git a/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx b/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
index 5d9929d7f..1a0ec5365 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
@@ -189,10 +189,10 @@ function DashboardList() {
- Create and organize your insights
+ Create and organize your insights
- Build dashboards to track key metrics and monitor performance in one place.
+ Build dashboards to track key metrics and monitor performance in one place.
@@ -224,6 +224,7 @@ function DashboardList() {
`Showing ${range[0]}-${range[1]} of ${total} items`,
diff --git a/frontend/app/components/Dashboard/components/MetricsList/ListView.tsx b/frontend/app/components/Dashboard/components/MetricsList/ListView.tsx
index dea32d6b8..706079811 100644
--- a/frontend/app/components/Dashboard/components/MetricsList/ListView.tsx
+++ b/frontend/app/components/Dashboard/components/MetricsList/ListView.tsx
@@ -34,13 +34,13 @@ interface Props {
}
const ListView: React.FC = ({
- list,
- siteId,
- selectedList,
- toggleSelection,
- disableSelection = false,
- inLibrary = false
- }) => {
+ list,
+ siteId,
+ selectedList,
+ toggleSelection,
+ disableSelection = false,
+ inLibrary = false
+}) => {
const [sorter, setSorter] = useState<{ field: string; order: 'ascend' | 'descend' }>({
field: 'lastModified',
order: 'descend'
@@ -259,6 +259,7 @@ const ListView: React.FC = ({
columns={columns}
dataSource={paginatedData}
rowKey="metricId"
+ showSorterTooltip={false}
onChange={handleTableChange}
onRow={
inLibrary