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 ? (
{filteredIssues.map((issue) => )}
) : ( -
- -

{stateFilter === "open" ? "No open issues" : stateFilter === "closed" ? "No closed issues" : "No issues yet"}

+
+
+ +
+

+ {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" && ( + + )}
)}