mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
Don't enforce integer for marker seconds field (#4009)
This commit is contained in:
@@ -35,7 +35,7 @@ export const SceneMarkerForm: React.FC<ISceneMarkerForm> = ({
|
||||
|
||||
const schema = yup.object({
|
||||
title: yup.string().ensure(),
|
||||
seconds: yup.number().required().integer(),
|
||||
seconds: yup.number().required(),
|
||||
primary_tag_id: yup.string().required(),
|
||||
tag_ids: yup.array(yup.string().required()).defined(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user