Skip to content

Commit

Permalink
fix: 馃悰 馃摑 Fix the form being the wrong namr
Browse files Browse the repository at this point in the history
  • Loading branch information
JamsRepos committed Apr 19, 2024
1 parent 4302699 commit 602d5d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wizarr-frontend/src/modules/join/pages/Emby/Signup.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div ref="jellyForm">
<div ref="embyForm">
<FormKit type="form" id="embyForm" v-model="form" @submit="submit()" submit-label="Create Account" :submit-attrs="{ wrapperClass: 'flex justify-end' }">
<FormKit type="text" label="Username" name="username" placeholder="marvin" validation="required:trim|alphanumeric" required autocomplete="off" />
<FormKit type="email" label="Email" name="email" placeholder="marvin@wizarr.dev" validation="required:trim|email" required autocomplete="email" />
Expand Down Expand Up @@ -48,7 +48,7 @@ export default defineComponent({
},
mounted() {
setTimeout(() => {
this.observer = useResizeObserver(this.$refs.jellyForm as HTMLElement, () => {
this.observer = useResizeObserver(this.$refs.embyForm as HTMLElement, () => {
this.$emit("height");
});
}, 500);
Expand Down

0 comments on commit 602d5d1

Please sign in to comment.