appv2: in app info view, add a small book icon next in the 'Admin doc' tab header

This commit is contained in:
Alexandre Aubin 2023-01-04 02:29:40 +01:00
parent 31d24bd5c0
commit 4f035ed607

View file

@ -204,8 +204,11 @@
<b-card v-if="app && app.doc.admin" no-body>
<b-tabs card fill pills>
<b-tab :title="$t('app.doc.admin.title')">
<vue-showdown :markdown="app.doc.admin" flavor="github" />
<b-tab>
<template #title>
<icon iname="book" class="mr-2" />{{ $t('app.doc.admin.title') }}
</template>
<vue-showdown :markdown="app.doc.admin" flavor="github" />
</b-tab>
</b-tabs>
</b-card>