File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
layouts/AuthenticatedLayout Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ export function getPipelineColumns(): ColumnDef<PipelineNamespace>[] {
4545 } ) ,
4646 cell : ( { getValue } ) => {
4747 const { runId, status } = getValue < {
48- runId : PipelineNamespaceBody [ "latest_run_id" ] ;
48+ runId : string ;
4949 status : PipelineNamespaceBody [ "latest_run_status" ] ;
5050 } > ( ) ;
5151
5252 return (
53- < div >
53+ < Link to = { routes . runs . detail ( runId ) } >
5454 < Tag
5555 emphasis = "subtle"
5656 rounded = { false }
@@ -60,7 +60,7 @@ export function getPipelineColumns(): ColumnDef<PipelineNamespace>[] {
6060 < RunIcon className = { `h-3 w-3 ${ getRunIconColor ( status ) } ` } />
6161 { runId ?. split ( "-" ) [ 0 ] }
6262 </ Tag >
63- </ div >
63+ </ Link >
6464 ) ;
6565 }
6666 }
Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ export function AuthenticatedLayout() {
1616 if ( data && checkUserOnboarding ( data ) ) {
1717 return (
1818 < Navigate
19- to = {
20- routes . survey +
21- `?${ new URLSearchParams ( { redirect : location . pathname + location . search } ) . toString ( ) } `
22- }
19+ to = { routes . survey + `?${ new URLSearchParams ( { redirect : routes . onboarding } ) . toString ( ) } ` }
2320 />
2421 ) ;
2522 }
You can’t perform that action at this time.
0 commit comments