-
+
+
A dashboard is a custom visualization using your OpenReplay data.
diff --git a/frontend/app/components/Dashboard/components/MetricListItem/MetricListItem.tsx b/frontend/app/components/Dashboard/components/MetricListItem/MetricListItem.tsx
index 52747a86c..18f580851 100644
--- a/frontend/app/components/Dashboard/components/MetricListItem/MetricListItem.tsx
+++ b/frontend/app/components/Dashboard/components/MetricListItem/MetricListItem.tsx
@@ -1,7 +1,7 @@
import React from 'react';
-import { Icon, NoContent, Label, Link, Pagination, Popup } from 'UI';
-import { checkForRecent, formatDateTimeDefault, convertTimestampToUtcTimestamp } from 'App/date';
-import { getIcon } from 'react-toastify/dist/components';
+import { Icon, Link, Popup } from 'UI';
+import { checkForRecent } from 'App/date';
+import { Tooltip } from 'react-tippy'
interface Props {
metric: any;
@@ -25,19 +25,6 @@ function DashboardLink({ dashboards}: any) {
}
function MetricTypeIcon({ type }: any) {
- const PopupWrapper = (props: any) => {
- return (
-
{type}}
- position="top center"
- on="hover"
- hideOnScroll={true}
- >
- {props.children}
-
- );
- }
-
const getIcon = () => {
switch (type) {
case 'funnel':
@@ -50,11 +37,15 @@ function MetricTypeIcon({ type }: any) {
}
return (
-