Skip to content

Commit d669758

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 4f7e7de commit d669758

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

src/Traits/Styling/Helpers/BulkActionStylingHelpers.php

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,15 @@ public function getBulkActionsTdCheckboxAttributes(): array
9494
$array = array_merge(
9595
[
9696
'x-cloak',
97-
'x-show' => "!currentlyReorderingStatus",
98-
'x-model' => "selectedItems",
99-
'wire:loading.attr.delay' => "disabled",
100-
'type' => "checkbox",
101-
],
97+
'x-show' => '!currentlyReorderingStatus',
98+
'x-model' => 'selectedItems',
99+
'wire:loading.attr.delay' => 'disabled',
100+
'type' => 'checkbox',
101+
],
102102
$this->getCustomAttributes('bulkActionsTdCheckboxAttributes')
103103
);
104104
ksort($array);
105+
105106
return $array;
106107

107108
}

tests/Unit/Traits/Configuration/BulkActionsStylingConfigurationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ public function test_bulk_actions_td_checkbox_attributes_returns_default_true_if
126126
'x-model' => 'selectedItems',
127127
'wire:loading.attr.delay' => 'disabled',
128128
'type' => 'checkbox',
129-
'default' => true,
130-
'default-colors' => false,
131-
'default-styling' => false
129+
'default' => true,
130+
'default-colors' => false,
131+
'default-styling' => false,
132132
];
133133
ksort($data);
134134

0 commit comments

Comments
 (0)