mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-20 01:09:26 +00:00
Update ProjectGroup.tsx
This commit is contained in:
parent
13db1249ac
commit
86c31ce112
1 changed files with 5 additions and 4 deletions
|
|
@ -178,7 +178,8 @@ export default function ProjectGroup({
|
|||
|
||||
{/* Status badges */}
|
||||
<div className="flex items-center gap-2">
|
||||
{isOngoing && (
|
||||
{/* TODO: Add ongoing badge after finish state management is implemented */}
|
||||
{/* {isOngoing && (
|
||||
<motion.div
|
||||
initial={{ opacity: 0, scale: 0.8 }}
|
||||
animate={{ opacity: 1, scale: 1 }}
|
||||
|
|
@ -189,7 +190,7 @@ export default function ProjectGroup({
|
|||
{t("layout.ongoing")}
|
||||
</Tag>
|
||||
</motion.div>
|
||||
)}
|
||||
)} */}
|
||||
|
||||
{!isOngoing && hasIssue && (
|
||||
<motion.div
|
||||
|
|
@ -343,12 +344,12 @@ export default function ProjectGroup({
|
|||
{/* End: Status and menu */}
|
||||
<div className="flex items-center gap-2 min-w-32 w-fit justify-end ml-4 border border-solid border-border-disabled border-r-0 border-y-0 pl-4">
|
||||
{/* Status tag */}
|
||||
{isOngoing && (
|
||||
{/* {isOngoing && (
|
||||
<Tag variant="info" size="sm">
|
||||
<Activity />
|
||||
{t("layout.ongoing")}
|
||||
</Tag>
|
||||
)}
|
||||
)} */}
|
||||
|
||||
{!isOngoing && hasIssue && (
|
||||
<Tag variant="warning" size="sm">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue