@yuuvis/client-core 2.1.30 → 2.1.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2028,7 +2028,7 @@ class SearchService {
2028
2028
  totalNumItems: searchResponse.totalNumItems,
2029
2029
  items: resultListItems,
2030
2030
  objectTypes: objectTypes,
2031
- paging: !!totalPages ? { page, totalPages } : undefined
2031
+ paging: totalPages > 1 ? { page, totalPages } : undefined
2032
2032
  };
2033
2033
  return result;
2034
2034
  }