chore(): lint

This commit is contained in:
Liam DeBeasi
2022-11-01 14:40:41 +00:00
parent 1d0e76d9ef
commit 3715ec82c1

View File

@@ -1169,7 +1169,7 @@ export class Datetime implements ComponentInterface {
private processValue = (value?: string | string[] | null) => {
const hasValue = value !== '' && value !== null && value !== undefined;
let valueToProcess = hasValue ? parseDate(value) : this.defaultParts;
const valueToProcess = hasValue ? parseDate(value) : this.defaultParts;
const { minParts, maxParts } = this;