Skip to content

Commit 7bf351f

Browse files
committed
wip
1 parent 8a926ec commit 7bf351f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

stubs/resources/js/Components/AppInputText.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<input
33
:value="modelValue"
44
class="text-skin-base-neutral-12 focus:ring-skin-primary-focus mt-1 block w-full rounded-md border-0 bg-skin-neutral-1 px-3 py-2 placeholder-skin-neutral-9 shadow-sm ring-1 ring-inset ring-skin-neutral-7 focus:ring-2 focus:ring-inset sm:text-sm sm:leading-6"
5-
:class="$attrs.class"
65
@input="$emit('update:modelValue', $event.target.value)"
76
/>
87
</template>

stubs/resources/js/Pages/AclPermission/PermissionForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<template #title> {{ title }} </template>
77
<template #content>
88
<AppFormErrors class="mb-4" />
9-
<form>
9+
<form @submit.prevent="submitForm">
1010
<div>
1111
<AppLabel for="name">{{ __('Name') }}</AppLabel>
1212
<AppInputText

stubs/resources/js/Pages/AclRole/RoleForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<template #title> {{ title }} </template>
77
<template #content>
88
<AppFormErrors class="mb-4" />
9-
<form>
9+
<form @submit.prevent="submitForm">
1010
<div>
1111
<AppLabel for="name">{{ __('Name') }}</AppLabel>
1212
<AppInputText

0 commit comments

Comments
 (0)