We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8699cf commit f14dd8cCopy full SHA for f14dd8c
packages/console/src/app/settings/page.tsx
@@ -108,7 +108,7 @@ export default function SettingsPage (): JSX.Element {
108
{Object.entries(usage).sort((a, b) => b[1] - a[1]).map(([space, total]) => {
109
return (
110
<tr key={space} className='border-b border-hot-red last:border-b-0'>
111
- <td className='text-xs font-mono py-2'>{space}</td>
+ <td className='text-xs font-mono py-2'><Link href={`/space/${space}`}>{space}</Link></td>
112
<td className='text-xs text-right py-2'>{filesize(total)}</td>
113
</tr>
114
)
0 commit comments