13
13
<!-- Token Name -->
14
14
<div class =" col-span-6 sm:col-span-4" >
15
15
<x-label for =" name" value =" {{ __ (' Token Name' ) } }" />
16
- <x-input id =" name" type =" text" class =" mt-1 block w-full" wire:model.defer =" createApiTokenForm.name" autofocus />
16
+ <x-input id =" name" type =" text" class =" mt-1 block w-full" wire:model =" createApiTokenForm.name" autofocus />
17
17
<x-input-error for =" name" class =" mt-2" />
18
18
</div >
19
19
25
25
<div class =" mt-2 grid grid-cols-1 md:grid-cols-2 gap-4" >
26
26
@foreach (Laravel \Jetstream \Jetstream:: $permissions as $permission )
27
27
<label class =" flex items-center" >
28
- <x-checkbox wire:model.defer =" createApiTokenForm.permissions" :value =" $permission" />
28
+ <x-checkbox wire:model =" createApiTokenForm.permissions" :value =" $permission" />
29
29
<span class =" ml-2 text-sm text-gray-600 dark:text-gray-400" >{{ $permission } } </span >
30
30
</label >
31
31
@endforeach
94
94
@endif
95
95
96
96
<!-- Token Value Modal -->
97
- <x-dialog-modal wire:model =" displayingToken" >
97
+ <x-dialog-modal wire:model.live =" displayingToken" >
98
98
<x-slot name =" title" >
99
99
{{ __ (' API Token' ) } }
100
100
</x-slot >
@@ -119,7 +119,7 @@ class="mt-4 bg-gray-100 px-4 py-2 rounded font-mono text-sm text-gray-500 w-full
119
119
</x-dialog-modal >
120
120
121
121
<!-- API Token Permissions Modal -->
122
- <x-dialog-modal wire:model =" managingApiTokenPermissions" >
122
+ <x-dialog-modal wire:model.live =" managingApiTokenPermissions" >
123
123
<x-slot name =" title" >
124
124
{{ __ (' API Token Permissions' ) } }
125
125
</x-slot >
@@ -128,7 +128,7 @@ class="mt-4 bg-gray-100 px-4 py-2 rounded font-mono text-sm text-gray-500 w-full
128
128
<div class =" grid grid-cols-1 md:grid-cols-2 gap-4" >
129
129
@foreach (Laravel \Jetstream \Jetstream:: $permissions as $permission )
130
130
<label class =" flex items-center" >
131
- <x-checkbox wire:model.defer =" updateApiTokenForm.permissions" :value =" $permission" />
131
+ <x-checkbox wire:model =" updateApiTokenForm.permissions" :value =" $permission" />
132
132
<span class =" ml-2 text-sm text-gray-600 dark:text-gray-400" >{{ $permission } } </span >
133
133
</label >
134
134
@endforeach
@@ -147,7 +147,7 @@ class="mt-4 bg-gray-100 px-4 py-2 rounded font-mono text-sm text-gray-500 w-full
147
147
</x-dialog-modal >
148
148
149
149
<!-- Delete Token Confirmation Modal -->
150
- <x-confirmation-modal wire:model =" confirmingApiTokenDeletion" >
150
+ <x-confirmation-modal wire:model.live =" confirmingApiTokenDeletion" >
151
151
<x-slot name =" title" >
152
152
{{ __ (' Delete API Token' ) } }
153
153
</x-slot >
0 commit comments