diff --git a/plugins/baser-core/src/Service/Admin/BcAdminContentsService.php b/plugins/baser-core/src/Service/Admin/BcAdminContentsService.php index 8513b44ebb..5a632f5fc6 100644 --- a/plugins/baser-core/src/Service/Admin/BcAdminContentsService.php +++ b/plugins/baser-core/src/Service/Admin/BcAdminContentsService.php @@ -133,7 +133,7 @@ public function getLayoutTemplates(EntityInterface $content) if (in_array($parentTemplate, $templates)) { unset($templates[$parentTemplate]); } - $templates = array_merge($templates, ['' => __d('baser_core', '親フォルダの設定に従う') . '(' . $parentTemplate . ')']); + $templates = array_merge(['' => __d('baser_core', '親フォルダの設定に従う') . '(' . $parentTemplate . ')'], $templates); } return $templates; }