mirror of
https://github.com/stashapp/stash.git
synced 2025-12-08 01:13:09 +01:00
Fix marker validation message
This commit is contained in:
parent
9b7e20351a
commit
c2bc31387c
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ export const SceneMarkerForm: React.FC<ISceneMarkerForm> = ({
|
||||||
.defined()
|
.defined()
|
||||||
.test(
|
.test(
|
||||||
"is-greater-than-seconds",
|
"is-greater-than-seconds",
|
||||||
intl.formatMessage({ id: "end_time_before_start_time" }),
|
intl.formatMessage({ id: "validation.end_time_before_start_time" }),
|
||||||
function (value) {
|
function (value) {
|
||||||
return value === null || value >= this.parent.seconds;
|
return value === null || value >= this.parent.seconds;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue