Skip to content

Commit

Permalink
Dashboard card for Files (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
jchuahtacc authored Nov 18, 2021
1 parent d37a10c commit d7557de
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/tapis-app/Dashboard/_components/Dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,19 @@ const Dashboard: React.FC = () => {
<DashboardCard
icon="data-files"
name="Systems"
text="Access TAPIS systems and files"
text="View TAPIS systems"
link="/systems"
counter={`${systems?.data?.result?.length} systems`}
loading={systems?.isLoading}
/>
<DashboardCard
icon="folder"
name="Files"
text="Access files available on TAPIS systems"
link="/files"
counter={`Files available on ${systems?.data?.result?.length} systems`}
loading={systems?.isLoading}
/>
<DashboardCard
icon="applications"
name="Applications"
Expand Down

0 comments on commit d7557de

Please sign in to comment.