Skip to content

Commit 30a7448

Browse files
committed
5.1.5
1 parent d6cc3ce commit 30a7448

16 files changed

+226
-162
lines changed

bun.lockb

0 Bytes
Binary file not shown.

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
"php": "^8.1",
1717
"ext-json": "*",
1818
"brick/money": "^0.8|^0.9|^0.10",
19+
"illuminate/filesystem": "^10.48.23|^11.35",
1920
"illuminate/support": "^10.48.23|^11.35",
2021
"inertiajs/inertia-laravel": "^1.3.2|^2.0",
21-
"laravel/fortify": "^1.24.5",
22+
"laravel/fortify": "^1.25.2",
2223
"nesbot/carbon": "^2.62.1|^3.4",
2324
"rap2hpoutre/fast-excel": "^5.4",
2425
"spatie/once": "^3.0",
@@ -161,5 +162,5 @@
161162
},
162163
"minimum-stability": "dev",
163164
"prefer-stable": true,
164-
"version": "5.1.4"
165+
"version": "5.1.5"
165166
}

package-lock.json

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@floating-ui/vue": "^1.1.4",
4646
"@headlessui/vue": "^1.7.22",
4747
"@heroicons/vue": "^2.1.5",
48-
"@inertiajs/vue3": "^2.0.0",
48+
"@inertiajs/vue3": "^2.0.2",
4949
"@popperjs/core": "^2.11.8",
5050
"@vue/compat": "^3.5.0",
5151
"@vueuse/core": "^10.11.1",

public/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"/ui.js": "/ui.js?id=592866a715b1c20b43fff6ca7980b279",
44
"/manifest.js": "/manifest.js?id=3267e5c99fd7b729e2f38ec55b50397d",
55
"/app.css": "/app.css?id=4979b631c5ac542d792aa697845f8e1d",
6-
"/vendor.js": "/vendor.js?id=2e3124d1d0d203ee719f357a56f352a2",
6+
"/vendor.js": "/vendor.js?id=7ea02f3d5fdd3c4b567217ae68db7376",
77
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2?id=c8390e146be0a3c8a5498355dec892ae",
88
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2?id=b0735c7dd6126471acbaf9d6e9f5e41a",
99
"/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2": "/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2?id=7c1fb232e3050e36dcc1aee61f1d0c06",

public/vendor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Actions/ActionResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function fields(NovaRequest $request)
7878
MorphToActionTarget::make(Nova::__('Action Target'), 'target')->showOnPreview(),
7979

8080
Status::make(Nova::__('Action Status'), 'status', function ($value) {
81-
return Nova::__(ucfirst($value));
81+
return transform($value, static fn ($value) => Nova::__(ucfirst($value)));
8282
})->loadingWhen([Nova::__('Waiting'), Nova::__('Running')])->failedWhen([Nova::__('Failed')]),
8383

8484
$this->when(isset($this->original), function () {

0 commit comments

Comments
 (0)