Fix setFromSavedCriterion for TimestampCriterion (#5742)

This commit is contained in:
WithoutPants 2025-03-20 08:29:17 +11:00 committed by GitHub
parent 720bbcb5c0
commit 6f848f7f1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1148,8 +1148,8 @@ export class TimestampCriterion extends ModifierCriterion<ITimestampValue> {
value: string | ITimestampValue; value: string | ITimestampValue;
value2?: string; value2?: string;
}) { }) {
this.setFromSavedCriterion(c); super.setFromSavedCriterion(c);
// this.value = decodeRangeValue(c); this.value = decodeRangeValue(c);
} }
protected encodeValue(): unknown { protected encodeValue(): unknown {