Skip to content

Commit f838882

Browse files
committed
Fix column bug
1 parent f7d8ef4 commit f838882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/TagResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static function form(Form $form): Form
7373
->required()
7474
->default(function (Select $component) {
7575
return $component->getRelationship()?->getModel()->query()
76-
->where('is_default_status', true)->first()->id ?? null;
76+
->where('is_default_type', true)->first()->id ?? null;
7777
}),
7878
]),
7979
]);

0 commit comments

Comments
 (0)