mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
Fix setFromSavedCriterion for TimestampCriterion (#5742)
This commit is contained in:
parent
720bbcb5c0
commit
6f848f7f1c
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue