8000 fix: pagination-and-wallet-spinup-minor-changes by MoulikaKulkarni · Pull Request #202 · credebl/studio · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: pagination-and-wallet-spinup-minor-changes #202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/components/Issuance/IssuedCrdentials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,6 @@ const CredentialList = () => {
<DataTable header={header} data={issuedCredList} loading={loading}></DataTable>
}
</div>
<div className="flex items-center justify-end mb-4">
<Pagination
currentPage={1}
=> {
}}
totalPages={0}
/>
</div>
</div>) : (
<div>
<span className="block text-center p-4 m-8">There isn't any data available.</span>
Expand Down
11 changes: 0 additions & 11 deletions src/components/Verification/VerificationCredentialList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,8 @@ const VerificationCredentialList = () => {
<div className="">
{verificationList && verificationList.length > 0 &&
<DataTable header={header} data={verificationList} loading={loading}></DataTable>

}
</div>
<div className="flex items-center justify-end mb-4">
<Pagination
currentPage={1}
=> {
}}
totalPages={0}
/>
</div>
</div>) : (
<div>
<span className="block text-center p-4 m-8">There isn't any data available.</span>
Expand All @@ -267,8 +258,6 @@ const VerificationCredentialList = () => {
userData={userData}
view={view}
/>


</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organization/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const Dashboard = () => {
}

const setWalletSpinupStatus = (status: boolean) => {
setSuccess('Agent spined up successfully')
setSuccess('Wallet created successfully')
fetchOrganizationDetails()
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/organization/OrganizationDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const OrganizationDetails = ({ orgData }: { orgData: Organisation | null }) => {
className="text-base font-normal text-gray-500 truncate dark:text-gray-400 w-20 md:w-32 lg:w-40"

>
Wallet Type
Agent Type
</p>
<p className="text-base font-normal text-gray-500 truncate dark:text-gray-400">:</p>
<p
Expand Down
2 changes: 1 addition & 1 deletion src/config/pathRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const pathRoutes = {
// credentials: '/organizations/credentials'
// },
documentation: {
root: '/docs'
root: 'https://docs.credebl.id'
},
schema: {
create: '/schemas',
Expand Down
0