This commit is contained in:
Jun-te Kim 2026-06-29 10:54:48 +00:00
parent 4b0133ac5c
commit c7d951eb7a
3 changed files with 14 additions and 2 deletions

View file

@ -21,7 +21,9 @@
"Bash(npx drizzle-kit *)",
"Bash(pip install *)",
"Bash(terraform fmt *)",
"Bash(gh label *)"
"Bash(gh label *)",
"Bash(python3 -c \"import psycopg2\")",
"Bash(python3 -c \"import psycopg\")"
],
"deny": [
"Bash(npx drizzle-kit generate)",

View file

@ -7,6 +7,7 @@ import { Card, CardContent } from "@/app/shadcn_components/ui/card";
import DampMouldRiskPanel from "./DampMouldRiskPanel";
import CompletionTrendsChart from "./CompletionTrendsChart";
import SurveyIssuesPanel from "./SurveyIssuesPanel";
import QueriesReviewPanel from "./QueriesReviewPanel";
import ExcludedFromPipelinePanel from "./ExcludedFromPipelinePanel";
import GroupFilter, { type GroupNode } from "./GroupFilter";
import { STAGE_COLORS, STAGE_ORDER } from "./types";
@ -430,7 +431,13 @@ export default function AnalyticsView({
onOpenTable={onOpenTable}
/>
{/* Row 7: Excluded from Pipeline (Removed from Bookings / Removed from Program) */}
{/* Row 7: Queries / Review with Landlord (parked but still in programme) */}
<QueriesReviewPanel
deals={currentProject.allDeals}
onOpenTable={onOpenTable}
/>
{/* Row 8: Excluded from Pipeline (Removed from Bookings / Removed from Program) */}
<ExcludedFromPipelinePanel
deals={currentProject.allDeals}
onOpenTable={onOpenTable}

View file

@ -172,6 +172,9 @@ export default function AddressSearch({
<p className="text-gray-700 text-sm break-words">
{selectedAddress.address}
</p>
<p className="text-gray-400 text-xs mt-1 font-mono break-words">
UPRN: {selectedAddress.uprn}
</p>
</div>
<div className="flex justify-end mt-4">
<Button