From a771dcf5be36459eab3970e8210bb22fbd6dfac5 Mon Sep 17 00:00:00 2001 From: zhenyi <434836402@qq.com> Date: Sat, 30 May 2026 15:08:05 +0800 Subject: [PATCH] feat: update workspace issues page --- src/page/workspace/issues/index.tsx | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/page/workspace/issues/index.tsx b/src/page/workspace/issues/index.tsx index 65128ac..638b53b 100644 --- a/src/page/workspace/issues/index.tsx +++ b/src/page/workspace/issues/index.tsx @@ -178,9 +178,25 @@ function IssueListView({ projectName, onCreate }: { projectName: string; onCreat ) : filteredIssues.length > 0 ? (
{stateFilter === "open" ? "No open issues" : stateFilter === "closed" ? "No closed issues" : "No issues yet"}
++ {stateFilter === "open" + ? "All caught up! Create an issue to track bugs, features, or tasks." + : stateFilter === "closed" + ? "No closed issues found." + : "Issues help you track bugs, features, and tasks."} +
+ {stateFilter !== "closed" && ( + + )}