mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
fix: add margin class to LanguageSelector and make density prop optional
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -11,7 +11,7 @@ const localeStorage = useLocalStorage("settings.locale", "");
|
||||
|
||||
withDefaults(
|
||||
defineProps<{
|
||||
density: "comfortable" | "compact" | "default";
|
||||
density?: "comfortable" | "compact" | "default";
|
||||
}>(),
|
||||
{
|
||||
density: "default",
|
||||
|
||||
Reference in New Issue
Block a user