Skip to content

Commit

Permalink
レイアウトテンプレートの取得順序変更 (#4040)
Browse files Browse the repository at this point in the history
  • Loading branch information
seto1 authored Nov 23, 2024
1 parent 7541e39 commit cbbd8bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit cbbd8bc

Please sign in to comment.