fix: show assignee in dashboard deadlines, untrack .env, update gitignore
All checks were successful
Deploy / deploy (push) Successful in 11s
All checks were successful
Deploy / deploy (push) Successful in 11s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -3,6 +3,8 @@ dist/
|
|||||||
*.db
|
*.db
|
||||||
*.db-shm
|
*.db-shm
|
||||||
*.db-wal
|
*.db-wal
|
||||||
|
*.db.bak
|
||||||
.vite/
|
.vite/
|
||||||
.env
|
.env
|
||||||
.env.*
|
.env.*
|
||||||
|
server/uploads/
|
||||||
|
|||||||
@@ -503,7 +503,12 @@ export default function Dashboard() {
|
|||||||
<div className={`w-2 h-2 rounded-full ${(PRIORITY_CONFIG[task.priority] || PRIORITY_CONFIG.medium).color}`} />
|
<div className={`w-2 h-2 rounded-full ${(PRIORITY_CONFIG[task.priority] || PRIORITY_CONFIG.medium).color}`} />
|
||||||
<div className="flex-1 min-w-0">
|
<div className="flex-1 min-w-0">
|
||||||
<p className="text-sm font-medium text-text-primary truncate">{task.title}</p>
|
<p className="text-sm font-medium text-text-primary truncate">{task.title}</p>
|
||||||
<StatusBadge status={task.status} size="xs" />
|
<div className="flex items-center gap-2 mt-0.5">
|
||||||
|
<StatusBadge status={task.status} size="xs" />
|
||||||
|
{task.assignedName && (
|
||||||
|
<span className="text-xs text-text-tertiary truncate">{task.assignedName}</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-1 text-xs text-text-tertiary shrink-0">
|
<div className="flex items-center gap-1 text-xs text-text-tertiary shrink-0">
|
||||||
<Clock className="w-3.5 h-3.5" />
|
<Clock className="w-3.5 h-3.5" />
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
NOCODB_URL=http://localhost:8090
|
|
||||||
NOCODB_TOKEN=By-wCdkUm6N9JdfmNpGH2jd6LqEejwOXER7FMkgr
|
|
||||||
NOCODB_BASE_ID=p37fzfdy2erdcle
|
|
||||||
Reference in New Issue
Block a user