stubs/inertia-vue-ts/app/javascript/Pages/Profile/Partials/UpdateProfileInformationForm.vue in kaze-0.8.0 vs stubs/inertia-vue-ts/app/javascript/Pages/Profile/Partials/UpdateProfileInformationForm.vue in kaze-0.9.0

- old
+ new

@@ -20,23 +20,18 @@ </script> <template> <section> <header> - <h2 class="text-lg font-medium text-gray-900 dark:text-gray-100"> - Profile Information - </h2> + <h2 class="text-lg font-medium text-gray-900 dark:text-gray-100">Profile Information</h2> <p class="mt-1 text-sm text-gray-600 dark:text-gray-400"> Update your account's profile information and email address. </p> </header> - <form - @submit.prevent="form.patch(profile_update_path())" - class="mt-6 space-y-6" - > + <form @submit.prevent="form.patch(profile_update_path())" class="mt-6 space-y-6"> <div> <InputLabel for="name" value="Name" /> <TextInput id="name" @@ -73,15 +68,10 @@ enter-active-class="transition ease-in-out" enter-from-class="opacity-0" leave-active-class="transition ease-in-out" leave-to-class="opacity-0" > - <p - v-if="form.recentlySuccessful" - class="text-sm text-gray-600 dark:text-gray-400" - > - Saved. - </p> + <p v-if="form.recentlySuccessful" class="text-sm text-gray-600 dark:text-gray-400">Saved.</p> </Transition> </div> </form> </section> </template>