@@ -51,6 +51,7 @@ export function Component() {
5151 const { emergencyResponse } = useOutletContext < EmergencyOutletContext > ( ) ;
5252 const {
5353 page : appealDocumentsPage ,
54+ offset : appealDocumentsOffset ,
5455 setPage : setAppealDocumentsPage ,
5556 limit : appealDocumentsLimit ,
5657 } = useFilterState < object > ( {
@@ -93,7 +94,7 @@ export function Component() {
9394 */
9495 appeal : emergencyResponse . appeals . map ( ( appeal ) => appeal . id ) . filter ( isDefined ) ,
9596 limit : appealDocumentsLimit ,
96- offset : appealDocumentsPage ,
97+ offset : appealDocumentsOffset ,
9798 } : undefined ,
9899 } ) ;
99100
@@ -317,7 +318,7 @@ export function Component() {
317318 < Container
318319 heading = { resolveToString (
319320 strings . fieldReports ,
320- { count : emergencyResponse . field_reports . length } ,
321+ { count : emergencyResponse . field_reports . length ?? '--' } ,
321322 ) }
322323 withHeaderBorder
323324 footerActions = { (
@@ -345,7 +346,7 @@ export function Component() {
345346 < Container
346347 heading = { resolveToString (
347348 strings . appealDocuments ,
348- { count : appealDocumentsResponse ?. count } ,
349+ { count : appealDocumentsResponse ?. count ?? '--' } ,
349350 ) }
350351 withHeaderBorder
351352 footerActions = { (
0 commit comments