Skip to content

Commit

Permalink
fix(FlightInformationRegionResource): ignore current record identifier
Browse files Browse the repository at this point in the history
Closes #214
  • Loading branch information
daveroverts committed Jul 31, 2022
1 parent b737fac commit f25fb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Filament/Resources/FlightInformationRegionResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static function form(Form $form): Form
->schema([
Forms\Components\TextInput::make('identifier')
->required()
->unique()
->unique(ignoreRecord: true)
->length(4),
Forms\Components\TextInput::make('name')
->required()
Expand Down

0 comments on commit f25fb6f

Please sign in to comment.