diff --git a/apps/web/src/routes/app/_workspace/_main/threads/$id/index.tsx b/apps/web/src/routes/app/_workspace/_main/threads/$id/index.tsx
index d873d15d..a0690ab0 100644
--- a/apps/web/src/routes/app/_workspace/_main/threads/$id/index.tsx
+++ b/apps/web/src/routes/app/_workspace/_main/threads/$id/index.tsx
@@ -267,7 +267,14 @@ function RouteComponent() {
- {thread.name}
+
+ {thread.name}
+ {thread.shortId != null && (
+
+ #{thread.shortId}
+
+ )}
+
diff --git a/apps/web/src/routes/app/_workspace/_main/threads/archive/$id.tsx b/apps/web/src/routes/app/_workspace/_main/threads/archive/$id.tsx
index 6e285702..a5f50cd8 100644
--- a/apps/web/src/routes/app/_workspace/_main/threads/archive/$id.tsx
+++ b/apps/web/src/routes/app/_workspace/_main/threads/archive/$id.tsx
@@ -160,7 +160,14 @@ function RouteComponent() {
- {thread.name}
+
+ {thread.name}
+ {thread.shortId != null && (
+
+ #{thread.shortId}
+
+ )}
+
diff --git a/apps/web/src/routes/app/_workspace/_main/threads/index.tsx b/apps/web/src/routes/app/_workspace/_main/threads/index.tsx
index e0615298..721e6501 100644
--- a/apps/web/src/routes/app/_workspace/_main/threads/index.tsx
+++ b/apps/web/src/routes/app/_workspace/_main/threads/index.tsx
@@ -347,6 +347,11 @@ export function ThreadsList({ fixedFilters = {}, subTitle }: ThreadsListProps) {
>
+ {thread?.shortId != null && (
+
+ #{thread.shortId}
+
+ )}