mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
save
This commit is contained in:
parent
4b0133ac5c
commit
c7d951eb7a
3 changed files with 14 additions and 2 deletions
|
|
@ -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)",
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue