File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ export const auditValueSchema =
1313 nonnegativeNumberSchema . describe ( 'Raw numeric value' ) ;
1414export const auditDisplayValueSchema = z
1515 . string ( )
16- . describe ( "Formatted value (e.g. '0.9 s', '2.1 MB')" )
17- . optional ( ) ;
16+ . optional ( )
17+ . describe ( "Formatted value (e.g. '0.9 s', '2.1 MB')" ) ;
1818
1919export const auditDetailsSchema = z
2020 . object ( {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const commitSchema = z
1111 . describe ( 'Commit SHA (full)' ) ,
1212 message : z . string ( ) . describe ( 'Commit message' ) ,
1313 date : z . coerce . date ( ) . describe ( 'Date and time when commit was authored' ) ,
14- author : z . string ( ) . describe ( 'Commit author name' ) . trim ( ) ,
14+ author : z . string ( ) . trim ( ) . describe ( 'Commit author name' ) ,
1515 } )
1616 . describe ( 'Git commit' ) ;
1717
You can’t perform that action at this time.
0 commit comments