Skip to content

Commit

Permalink
Change editingId to -1 in authors screen
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Aug 7, 2023
1 parent 3b05847 commit 41a6cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ScreenAuthors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default defineComponent({
setup () {
const { authors, authorsKind, setAuthors } = useCff()
const { errors } = useValidation()
const editingId = ref(0)
const editingId = ref(-1)
const addAuthor = async (kind: AuthorKind) => {
const newAuthors = [...authors.value, {}]
Expand Down

0 comments on commit 41a6cf4

Please sign in to comment.