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

View File

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