Skip to content

Commit fcb95b4

Browse files
authored
[6.x] Remove the spinner from the loading bulk actions state (#13709)
1 parent 7427b40 commit fcb95b4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

resources/js/components/ui/Listing/BulkActions.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Motion } from 'motion-v';
33
import { injectListingContext } from '../Listing/Listing.vue';
44
import { computed, ref, watch } from 'vue';
5-
import { Button, ButtonGroup, Icon } from '@ui';
5+
import { Button, ButtonGroup } from '@ui';
66
import BulkActions from '@/components/actions/BulkActions.vue';
77
88
const { actionUrl, actionContext, selections, refresh, clearSelections } = injectListingContext();
@@ -51,7 +51,7 @@ function actionFailed(response) {
5151
:context="actionContext"
5252
@started="actionStarted"
5353
@completed="actionCompleted"
54-
v-slot="{ actions, loading }"
54+
v-slot="{ actions }"
5555
>
5656
<Motion
5757
v-if="visible"
@@ -66,7 +66,6 @@ function actionFailed(response) {
6666
<ButtonGroup>
6767
<Button
6868
class="text-blue-500!"
69-
:icon-append="loading ? 'loading' : null"
7069
:text="__n(`Deselect :count item|Deselect all :count items`, selections.length)"
7170
@click="clearSelections"
7271
/>

0 commit comments

Comments
 (0)