mirror of
https://github.com/coder/coder.git
synced 2026-09-22 13:10:21 +08:00
fix: use owner username instead of owner name in tasks list links (#18098)
Fixes a bug where if you click on a task in the tasks list, you see: 
This commit is contained in:
@@ -318,7 +318,7 @@ const TasksTable: FC<TasksTableProps> = ({ templates }) => {
|
||||
{prompt}
|
||||
</span>
|
||||
<RouterLink
|
||||
to={`/tasks/${workspace.owner_name}/${workspace.name}`}
|
||||
to={`/tasks/${workspace.owner_username}/${workspace.name}`}
|
||||
className="absolute inset-0"
|
||||
>
|
||||
<span className="sr-only">Access task</span>
|
||||
|
||||
Reference in New Issue
Block a user