Skip to content

Commit ba2c304

Browse files
committed
Split actions (temp)
1 parent 81b6264 commit ba2c304

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@
1717
}
1818
],
1919
"require": {
20-
"moox/core": "^3.1.2",
20+
"moox/core": "self.version",
2121
"web-auth/webauthn-lib": "^5.0"
2222
},
23+
"require-dev": {
24+
"moox/devtools": "self.version"
25+
},
2326
"autoload": {
2427
"psr-4": {
2528
"Moox\\Passkey\\": "src"
@@ -34,4 +37,4 @@
3437
},
3538
"minimum-stability": "stable",
3639
"prefer-stable": true
37-
}
40+
}

src/Resources/PasskeyResource.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace Moox\Passkey\Resources;
44

5-
use Filament\Schemas\Schema;
6-
use Filament\Schemas\Components\Utilities\Set;
7-
use Filament\Actions\EditAction;
85
use Filament\Actions\DeleteBulkAction;
6+
use Filament\Actions\EditAction;
97
use Filament\Forms\Components\Select;
108
use Filament\Forms\Components\Textarea;
119
use Filament\Forms\Components\TextInput;
1210
use Filament\Resources\Resource;
11+
use Filament\Schemas\Components\Utilities\Set;
12+
use Filament\Schemas\Schema;
1313
use Filament\Tables\Columns\TextColumn;
1414
use Filament\Tables\Table;
1515
use Illuminate\Support\Facades\Config;
@@ -27,7 +27,7 @@ class PasskeyResource extends Resource
2727

2828
protected static ?string $model = Passkey::class;
2929

30-
protected static string | \BackedEnum | null $navigationIcon = 'gmdi-fingerprint-o';
30+
protected static string|\BackedEnum|null $navigationIcon = 'gmdi-fingerprint-o';
3131

3232
#[Override]
3333
public static function form(Schema $schema): Schema

0 commit comments

Comments
 (0)