File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " effect " : patch
3
+ ---
4
+
5
+ Fix incorrect schema ID annotation in ` Schema.lessThanOrEqualToDate ` , closes #5212
Original file line number Diff line number Diff line change @@ -6670,8 +6670,8 @@ export const lessThanOrEqualToDate = <S extends Schema.Any>(
6670
6670
< A extends Date > ( self : S & Schema < A , Schema . Encoded < S > , Schema . Context < S > > ) : filter < S > =>
6671
6671
self . pipe (
6672
6672
filter ( ( a : Date ) => a <= max , {
6673
- schemaId : LessThanDateSchemaId ,
6674
- [ LessThanDateSchemaId ] : { max } ,
6673
+ schemaId : LessThanOrEqualToDateSchemaId ,
6674
+ [ LessThanOrEqualToDateSchemaId ] : { max } ,
6675
6675
title : `lessThanOrEqualToDate(${ util_ . formatDate ( max ) } )` ,
6676
6676
description : `a date before or equal to ${ util_ . formatDate ( max ) } ` ,
6677
6677
...annotations
You can’t perform that action at this time.
0 commit comments