)
@@ -214,7 +225,11 @@ function Card({
alignItems?: 'baseline' | 'center' | 'end'
}): JSX.Element {
return (
-
+
{title}
{value &&
{value}
}
diff --git a/frontend/src/scenes/actions/ActionsTable.tsx b/frontend/src/scenes/actions/ActionsTable.tsx
index ed831a5056965..38259efc8719a 100644
--- a/frontend/src/scenes/actions/ActionsTable.tsx
+++ b/frontend/src/scenes/actions/ActionsTable.tsx
@@ -24,6 +24,7 @@ import { LemonInput } from '@posthog/lemon-ui'
import { actionsLogic } from 'scenes/actions/actionsLogic'
import { IconCheckmark, IconPlayCircle } from 'lib/lemon-ui/icons'
import { ProductIntroduction } from 'lib/components/ProductIntroduction/ProductIntroduction'
+import { LemonMarkdown } from 'lib/lemon-ui/LemonMarkdown'
export const scene: SceneExport = {
component: ActionsTable,
@@ -50,9 +51,16 @@ export function ActionsTable(): JSX.Element {
sorter: (a: ActionType, b: ActionType) => (a.name || '').localeCompare(b.name || ''),
render: function RenderName(name, action: ActionType, index: number): JSX.Element {
return (
-
- {name ||
Unnamed action}
-
+ <>
+
+ {name ||
Unnamed action}
+
+ {action.description && (
+
+ {action.description}
+
+ )}
+ >
)
},
},
diff --git a/frontend/src/scenes/dashboard/dashboards/DashboardsTable.tsx b/frontend/src/scenes/dashboard/dashboards/DashboardsTable.tsx
index cf29eebf550dc..bf49e2d424bf7 100644
--- a/frontend/src/scenes/dashboard/dashboards/DashboardsTable.tsx
+++ b/frontend/src/scenes/dashboard/dashboards/DashboardsTable.tsx
@@ -23,6 +23,7 @@ import { LemonRow } from 'lib/lemon-ui/LemonRow'
import { DASHBOARD_CANNOT_EDIT_MESSAGE } from '../DashboardHeader'
import { LemonInput, LemonSelect } from '@posthog/lemon-ui'
import { membersLogic } from 'scenes/organization/Settings/membersLogic'
+import { LemonMarkdown } from 'lib/lemon-ui/LemonMarkdown'
export function DashboardsTableContainer(): JSX.Element {
const { dashboardsLoading } = useValues(dashboardsModel)
@@ -104,7 +105,9 @@ export function DashboardsTable({
)}
{hasAvailableFeature(AvailableFeature.DASHBOARD_COLLABORATION) && description && (
-