Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed Jul 25, 2024
1 parent d55b28a commit 5a3c839
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pephub/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.0"
__version__ = "0.12.1"
14 changes: 8 additions & 6 deletions web/src/pages/Namespace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,12 +276,14 @@ export const NamespacePage = () => {
) : (
schemasFiltered.map((s) => <SchemaListCard key={s.name} schema={s} />)
)}
<Pagination
limit={schemaLimit}
offset={schemaOffset}
count={schemas?.count || 0}
setOffset={setSchemaOffset}
/>
{schemas?.count && schemas?.count > schemaLimit ? (
<Pagination
limit={schemaLimit}
offset={schemaOffset}
count={schemas?.count || 0}
setOffset={setSchemaOffset}
/>
) : null}
</div>
</Fragment>
) : (
Expand Down

0 comments on commit 5a3c839

Please sign in to comment.