From 1155d0675bc5658ec5bf53affe0dc7502d42fd1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 16 Sep 2025 13:26:31 +0200 Subject: [PATCH] Update default center type fallback in `PersonEdit.vue` to `"center"` for consistency. --- .../Resources/public/vuejs/_components/OnTheFly/PersonEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/PersonEdit.vue b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/PersonEdit.vue index 67b5caec4..54154ebd4 100644 --- a/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/PersonEdit.vue +++ b/src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/OnTheFly/PersonEdit.vue @@ -494,7 +494,7 @@ onMounted(() => { // if there is only one center, preselect it person.center = { id: config.centers[0].id, - type: (config.centers[0]).type ?? "chill_main_center", + type: (config.centers[0]).type ?? "center", }; } });