Fix date property change detection.
This commit is contained in:
parent
e373efdd0a
commit
ba66f1de6b
3 changed files with 7 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Version 3.2.0" src="https://img.shields.io/badge/version-3.2.0-blue" />
|
||||
<img alt="Version 3.2.1" src="https://img.shields.io/badge/version-3.2.1-blue" />
|
||||
</p>
|
||||
|
||||
## Introduction
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@sharkitek/core",
|
||||
"version": "3.2.0",
|
||||
"version": "3.2.1",
|
||||
"description": "TypeScript library for well-designed model architectures.",
|
||||
"keywords": [
|
||||
"deserialization",
|
||||
|
|
|
@ -21,6 +21,11 @@ export class DateType extends Type<string, Date>
|
|||
|
||||
return value?.toISOString();
|
||||
}
|
||||
|
||||
propertyHasChanged(originalValue: Date|null|undefined, currentValue: Date|null|undefined): boolean
|
||||
{
|
||||
return originalValue?.toISOString() != currentValue?.toISOString();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue