{/* Shared filters */}
{/* Table 1 — Court rulings */}
פסיקת בתי משפט
{courts.data && (
{courts.data.count}
)}
{courts.error ? (
{courts.error.message}
) : (
מס׳ / מראה מקום
{/* "שם / ערכאה" hidden by request — see CourtRow */}
שם / ערכאה
תאריך
תחום
רמה
הלכות
{courts.isPending ? (
) : !courts.data?.items.length ? (
אין פסיקת בתי משפט בקורפוס.
) : (
courts.data.items.map((p) => (
))
)}
)}
{/* Table 2 — Appeals committee decisions */}
החלטות ועדות ערר
{committee.data && (
{committee.data.count}
)}
{committee.error ? (
{committee.error.message}
) : (
מספר ערר
{/* "שם" hidden by request — see CommitteeRow */}
שם
מחוז
יו״ר
תאריך
תחום
הלכות
{committee.isPending ? (
) : !committee.data?.items.length ? (
אין החלטות ועדת ערר בקורפוס.
) : (
committee.data.items.map((p) => (
))
)}
)}
{ if (!open) setEditingId(null); }}
/>
);
}