feat(dashboard): tighten explainability detail views

This commit is contained in:
2026-03-31 22:50:47 +02:00
parent db50e2e555
commit 7ace137d16
11 changed files with 580 additions and 65 deletions
@@ -1,5 +1,6 @@
"use client";
import React from "react";
import { motion } from "framer-motion";
interface WidgetContainerProps {
@@ -56,7 +57,7 @@ export function WidgetContainer({
</span>
) : null}
</div>
{description && (
{showDetails && description && (
<p className="ml-[22px] mt-1 line-clamp-2 text-[11px] leading-4 text-gray-500 dark:text-gray-400">
{description}
</p>