Skip to content

Commit 1fbef3f

Browse files
committed
Fix tag type form
1 parent 571353a commit 1fbef3f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

resources/lang/en/filament-flexible-content-block-pages.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'name_lbl' => 'Name',
4141
'colour_lbl' => 'Color',
4242
'seo_description_lbl' => 'SEO description',
43+
'icon_lbl' => 'Icon',
4344
],
4445
'tag_types' => [
4546
'navigation_group' => 'Tags',

resources/lang/nl/filament-flexible-content-block-pages.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'name_lbl' => 'Naam',
4141
'colour_lbl' => 'Kleur',
4242
'seo_description_lbl' => 'SEO-beschrijving',
43+
'icon_lbl' => 'Icoon',
4344
],
4445
'tag_types' => [
4546
'navigation_group' => 'Tags',

src/Resources/TagTypeResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static function form(Form $form): Form
7575
->schema([
7676
Section::make([
7777
NameField::create(true),
78-
CodeField::create(),
78+
CodeField::create(true),
7979
Toggle::make('is_default_type')
8080
->label(flexiblePagesTrans('tag_types.tag_type_is_default_type_lbl'))
8181
->default(false),

0 commit comments

Comments
 (0)