mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +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()
|
||||
.test(
|
||||
"is-greater-than-seconds",
|
||||
intl.formatMessage({ id: "end_time_before_start_time" }),
|
||||
intl.formatMessage({ id: "validation.end_time_before_start_time" }),
|
||||
function (value) {
|
||||
return value === null || value >= this.parent.seconds;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue