feat: add bucket object browser

This commit is contained in:
2024-08-18 22:57:08 +07:00
parent 3a147f4133
commit 934e0c409c
29 changed files with 656 additions and 18 deletions
+3 -1
View File
@@ -40,7 +40,9 @@ const BucketCard = ({ data }: Props) => {
<div className="flex flex-row justify-end gap-4">
<Button href={`/buckets/${data.id}`}>Manage</Button>
{/* <Button color="primary">Browse</Button> */}
<Button color="primary" href={`/buckets/${data.id}?tab=browse`}>
Browse
</Button>
</div>
</div>
);