@@ -86,17 +86,31 @@ export function WorkspaceEntry({ desc, model, isAdmin, stopWorkspace }: Props) {
86
86
< WorkspaceStatusIndicator instance = { desc ?. latestInstance } />
87
87
</ div >
88
88
< div className = "flex flex-col w-3/12" >
89
- < a href = { startUrl . toString ( ) } > < div className = "font-medium text-gray-800 dark:text-gray-100 overflow-ellipsis truncate w-full hover:text-blue-600 dark:hover:text-blue-400" > { ws . id } </ div > </ a >
90
- < a href = { project ? 'https://' + project : undefined } > < div className = "text-sm overflow-ellipsis truncate w-full text-gray-400 hover:text-blue-600 dark:hover:text-blue-400" > { project || 'Unknown' } </ div > </ a >
89
+ < Tooltip content = { ws . id } >
90
+ < a href = { startUrl . toString ( ) } >
91
+ < div className = "font-medium text-gray-800 dark:text-gray-100 overflow-ellipsis truncate w-full hover:text-blue-600 dark:hover:text-blue-400" > { ws . id } </ div >
92
+ </ a >
93
+ </ Tooltip >
94
+ < Tooltip content = { project || 'Unknown' } >
95
+ < a href = { project ? 'https://' + project : undefined } >
96
+ < div className = "text-sm overflow-ellipsis truncate w-full text-gray-400 hover:text-blue-600 dark:hover:text-blue-400" > { project || 'Unknown' } </ div >
97
+ </ a >
98
+ </ Tooltip >
91
99
</ div >
92
100
< div className = "flex flex-col w-4/12" >
93
- < div className = "text-gray-500 overflow-ellipsis truncate w-full" > { ws . description } </ div >
94
- < a href = { ws . contextURL } >
95
- < div className = "text-sm text-gray-400 overflow-ellipsis truncate w-full hover:text-blue-600 dark:hover:text-blue-400" > { ws . contextURL } </ div >
96
- </ a >
101
+ < Tooltip content = { ws . description } >
102
+ < div className = "text-gray-500 overflow-ellipsis truncate w-full" > { ws . description } </ div >
103
+ </ Tooltip >
104
+ < Tooltip content = { ws . contextURL } >
105
+ < a href = { ws . contextURL } >
106
+ < div className = "text-sm text-gray-400 overflow-ellipsis truncate w-full hover:text-blue-600 dark:hover:text-blue-400" > { ws . contextURL } </ div >
107
+ </ a >
108
+ </ Tooltip >
97
109
</ div >
98
110
< div className = "flex flex-col items-start w-2/12" >
99
- < div className = "text-gray-500 overflow-ellipsis truncate w-full" > { currentBranch } </ div >
111
+ < Tooltip content = { currentBranch } className = "w-full" >
112
+ < div className = "text-gray-500 overflow-ellipsis truncate w-full" > { currentBranch } </ div >
113
+ </ Tooltip >
100
114
< PendingChangesDropdown workspaceInstance = { desc . latestInstance } />
101
115
</ div >
102
116
< div className = "flex w-2/12 self-center" >
0 commit comments