File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ const searchHandler: ((value: string) => void) | undefined =
149149 :state =" task.state"
150150 />
151151 </TableCell >
152- <TableCell >{{ task.args }}</TableCell >
152+ <TableCell >{{ limitText(JSON.stringify( task.args), 25) }}</TableCell >
153153 <TableCell >{{ limitText(JSON.stringify(task.kwargs), 25) }}</TableCell >
154154 <TableCell >{{ limitText(formatReturnValue(task), 10) }}</TableCell >
155155 <TableCell class =" text-center" >
Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ export const getTasksQueryParamsSchema = z.object({
3737 sortByRuntime : z . enum ( [ 'asc' , 'desc' ] ) . optional ( ) ,
3838 sortByStartedAt : z . enum ( [ 'asc' , 'desc' ] ) . optional ( ) ,
3939 sortByQueuedAt : z . enum ( [ 'asc' , 'desc' ] ) . optional ( ) ,
40- startDate : z . date ( ) . optional ( ) ,
41- endDate : z . date ( ) . optional ( )
40+ startDate : z . coerce . date ( ) . optional ( ) ,
41+ endDate : z . coerce . date ( ) . optional ( )
4242} )
You can’t perform that action at this time.
0 commit comments