Skip to content

Commit f92c384

Browse files
committed
fix: update button label in AFCL documentation and adjust margin in SettingsView
1 parent 4892a05 commit f92c384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adminforth/documentation/docs/tutorial/03-Customization/15-afcl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const activeButton = ref('')
8787
<template #button:Profile>
8888
<div class="flex px-4 py-2" @click="console.log("Add passkey got clicked")">
8989
<IconPlusOutline class="w-5 h-5 me-2"/>
90-
<p>{{ addPasskeyMode === 'platform' ? 'Add Local Passkey' : 'Add External Passkey' }}</p>
90+
<p>Add Local Passkey</p>
9191
</div>
9292
</template>
9393
<template #button:Dropdown>

adminforth/spa/src/views/SettingsView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="m-4 mt-16 h-full w-full" :class="{ 'hidden': initialTabSet === false }">
2+
<div class="md:ml-4 mt-16 h-full w-full" :class="{ 'hidden': initialTabSet === false }">
33
<div v-if="!coreStore?.config?.settingPages || coreStore?.config?.settingPages.length === 0">
44
<p>No setting pages configured or still loading...</p>
55
</div>

0 commit comments

Comments
 (0)