refactor(components): add autoEdit call to story form component

... if `canDraft` == false
This commit is contained in:
parent 6dfabd87d0
commit 410cb580d8
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

@ -15,7 +15,7 @@
FormStory,
defaultChapter,
} from "~/lib/client/types/form/story";
import { autoSave } from "~/lib/client/utils";
import { autoEdit, autoSave } from "~/lib/client/utils";
import findUser from "~/components/findUser.vue";
@ -59,7 +59,13 @@
@submit="onSubmit"
@invalid-submit="inval"
> -->
<form @submit="subCb" @change="() => canDraft && autoSave(values)">
<form
@submit="subCb"
@change="
() =>
canDraft ? autoSave(values) : autoEdit(values, endpoint, endpointMethod)
"
>
<!-- <a-form v-bind:model="acData"> -->
<Field name="title" v-slot="{ value, field, errorMessage }">
<a-form-item