fix: add margin class to LanguageSelector and make density prop optional

This commit is contained in:
zurdi
2025-12-23 13:42:21 +00:00
parent f8949c0786
commit 412c6f4d8f
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ const { t } = useI18n();
<template>
<RSection icon="mdi-translate" :title="t('settings.language')" class="ma-2">
<template #content>
<LanguageSelector />
<LanguageSelector class="ma-2" />
</template>
</RSection>
</template>

View File

@@ -11,7 +11,7 @@ const localeStorage = useLocalStorage("settings.locale", "");
withDefaults(
defineProps<{
density: "comfortable" | "compact" | "default";
density?: "comfortable" | "compact" | "default";
}>(),
{
density: "default",