Update default center type fallback in PersonEdit.vue to "center" for consistency.

This commit is contained in:
2025-09-16 13:26:31 +02:00
parent 0b9ae995f4
commit 1155d0675b

View File

@@ -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",
};
}
});