Skip to content

Commit

Permalink
Fix incorrect date validation from dayjs (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcout1nhoo authored May 5, 2022
1 parent 2cb51fc commit 2336d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dayjs/src/dayjs-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class DayjsUtils<TDate extends Dayjs = Dayjs> implements IUtils<T
return null;
}

return this.dayjs(value, format, this.locale);
return this.dayjs(value, format, this.locale, true);
};

public date = (value?: any) => {
Expand Down

0 comments on commit 2336d76

Please sign in to comment.