diff --git a/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx b/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
index c4ef9f2d6..77350083e 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/DashboardList.tsx
@@ -74,40 +74,22 @@ function DashboardList({siteId}: { siteId: string }) {
return (
list.length === 0 && !dashboardStore.filter.showMine ? (
}
+ image={}
+
imageStyle={{height: 300}}
description={(
- {dashboardsSearch !== ''
- ?
- No matching results
+
+
+ Create your first dashboard.
- : (
-
-
- You haven't created any dashboards yet
-
-
- A Dashboard is a collection of{' '}
-
- Utilize cards to visualize key user interactions or product
- performance metrics.
-
- }
- className="text-center"
- >
-
Cards
- {' '}
- that can be shared across teams.
-
-
-
-
-
-
- )}
+
+ Organize your product and technical insights as cards in dashboards to see the bigger picture, take action and improve user experience.
+
+
+
+
+
)}
/>
@@ -132,6 +114,7 @@ function DashboardList({siteId}: { siteId: string }) {
})}
/>)
);
+
}
export default connect((state: any) => ({
diff --git a/frontend/app/components/Dashboard/components/DashboardList/DashboardsView.tsx b/frontend/app/components/Dashboard/components/DashboardList/DashboardsView.tsx
index bb3a152b9..829852dd9 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/DashboardsView.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/DashboardsView.tsx
@@ -5,7 +5,7 @@ import Header from './Header';
function DashboardsView({history, siteId}: { history: any; siteId: string }) {
return (
-
+
diff --git a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/CreateCard.tsx b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/CreateCard.tsx
index df4d8a3fb..22ac90d79 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/CreateCard.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/CreateCard.tsx
@@ -83,7 +83,7 @@ function CreateCard(props: Props) {
-
+
{metric.name}
@@ -94,7 +94,7 @@ function CreateCard(props: Props) {
-
+
);
}
diff --git a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/Count.tsx b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/Count.tsx
index 1f21a6c9a..044824ab0 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/Count.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/Count.tsx
@@ -9,6 +9,7 @@ import {
import React from 'react';
import ExCard from './ExCard';
+import { size } from '@floating-ui/react-dom-interactions';
const TYPES = {
Frustrations: 'frustrations',
@@ -37,6 +38,7 @@ function ExampleCount(props: any) {
{ label: 'Errors', value: '1' },
{ label: 'Users', value: '2' },
]}
+ size='small'
onChange={(v) => setType(v)}
/>
diff --git a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/ExCard.tsx b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/ExCard.tsx
index b055c81fd..8fbe5e865 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/ExCard.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/ExCard.tsx
@@ -13,15 +13,15 @@ function ExCard({
onCard: (card: string) => void;
height?: number;
}) {
- return (
-
+ );
}
export default ExCard
diff --git a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/SessionsBy/ByUrl.tsx b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/SessionsBy/ByUrl.tsx
index 1b2de44e2..b6d35ef76 100644
--- a/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/SessionsBy/ByUrl.tsx
+++ b/frontend/app/components/Dashboard/components/DashboardList/NewDashModal/Examples/SessionsBy/ByUrl.tsx
@@ -58,6 +58,7 @@ function ByUrl(props: any) {
{ label: 'Page Title', value: '1' },
]}
onChange={(v) => setMode(Number(v))}
+ size='small'
/>