mirror of
https://github.com/stashapp/stash.git
synced 2025-12-11 02:42:43 +01:00
Render pagination at top as well (#614)
This commit is contained in:
parent
9d0522f62d
commit
f60ce01fec
2 changed files with 2 additions and 0 deletions
|
|
@ -6,6 +6,7 @@ const markup = `
|
|||
* Add support for parent/child studios.
|
||||
|
||||
### 🎨 Improvements
|
||||
* Show pagination at top as well as bottom of the page.
|
||||
* Add split xpath post-processing action.
|
||||
* Improved the layout of the scene page.
|
||||
* Show rating as stars in scene page.
|
||||
|
|
|
|||
|
|
@ -412,6 +412,7 @@ const useList = <QueryResult extends IQueryResult, QueryData extends IDataItem>(
|
|||
: undefined}
|
||||
{(result.loading || !forageInitialised) && <LoadingIndicator />}
|
||||
{result.error && <h1>{result.error.message}</h1>}
|
||||
{maybeRenderPagination()}
|
||||
{maybeRenderContent()}
|
||||
{maybeRenderPaginationIndex()}
|
||||
{maybeRenderPagination()}
|
||||
|
|
|
|||
Loading…
Reference in a new issue