Explorar el Código

80875 making nullable

SULLEY\ryo-h hace 4 años
padre
commit
bd1913718d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/app/src/components/SearchPage/SearchResultList.tsx

+ 1 - 1
packages/app/src/components/SearchPage/SearchResultList.tsx

@@ -18,7 +18,7 @@ type Props = {
   selectedPages: ISearchedPage[],
   selectedPages: ISearchedPage[],
   onClickInvoked?: (pageId: string) => void,
   onClickInvoked?: (pageId: string) => void,
   searchResultCount?: number,
   searchResultCount?: number,
-  activePage: number,
+  activePage?: number,
   pagingLimit?: number,
   pagingLimit?: number,
   onPagingNumberChanged?: (activePage: number) => void,
   onPagingNumberChanged?: (activePage: number) => void,
 }
 }