mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #2309 from appwrite/fix-pagination-issue-organization-overview
This commit is contained in:
@@ -157,7 +157,7 @@
|
||||
{#if activeProjects.length > 0}
|
||||
<CardContainer
|
||||
disableEmpty={!$canWriteProjects}
|
||||
total={activeProjects.length}
|
||||
total={data.projects.total}
|
||||
offset={data.offset}
|
||||
on:click={handleCreateProject}>
|
||||
{#each activeProjects as project}
|
||||
@@ -242,7 +242,7 @@
|
||||
name="Projects"
|
||||
limit={data.limit}
|
||||
offset={data.offset}
|
||||
total={activeProjects.length} />
|
||||
total={data.projects.total} />
|
||||
|
||||
<!-- Archived Projects Section -->
|
||||
<ArchiveProject
|
||||
|
||||
Reference in New Issue
Block a user