Skip to content

Commit

Permalink
Merge pull request #216 from ECFMP/214-fir-name-edit
Browse files Browse the repository at this point in the history
fix(FlightInformationRegionResource): ignore current record identifier
  • Loading branch information
AndyTWF authored Jul 31, 2022
2 parents 3c9ded5 + f25fb6f commit 015e6bf
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 015e6bf

Please sign in to comment.