dev tickets and issues raised

This commit is contained in:
2026-07-15 14:24:26 +05:30
parent c911311596
commit c872566e83
15 changed files with 489 additions and 419 deletions

View File

@@ -9,8 +9,11 @@ export type FeedSortBy = '' | 'id' | 'date' | 'chainage' | 'latlong';
export type FeedSortDir = 'asc' | 'desc';
export interface FeedTab {
// '' = pending tab; 'YYYY-MM-DD' or 'YYYY-MM-DD_YYYY-MM-DD' (range) = history tab
date: string;
isRectificationTab: boolean;
// History tabs only: show records audited BY the logged-in user
auditedByMe?: boolean;
totalAnomalyCount: number;
anomalies: any[];
anomaliesCopy: any[];