Feat(settings): add renderer for settings configuration #142

Merged
jakob.scheid merged 88 commits from feature/settings-renderer into main 2026-07-28 20:14:50 +02:00
Showing only changes of commit 167ddbfb4e - Show all commits
+1 -1
View File
@@ -44,7 +44,7 @@ watchEffect(() => {
const updateSettings = function updateSettings () { const updateSettings = function updateSettings () {
if (activeSection.value) { if (activeSection.value) {
const setting = getSettingRecursively(activeSection.value, settings.value); const setting = getSettingRecursively(activeSection.value, settings.value);
if (!setting.content) { if (!setting) {
router.push('/settings'); router.push('/settings');
} else { } else {
activeSectionContent.value = setting; activeSectionContent.value = setting;