mirror of
https://github.com/gotson/komga.git
synced 2025-12-13 12:03:44 +01:00
documentation link in drawer footer
This commit is contained in:
parent
ac338275cf
commit
61ee9efc77
2 changed files with 23 additions and 9 deletions
1
next-ui/dir2json.d.ts
vendored
1
next-ui/dir2json.d.ts
vendored
|
|
@ -6,7 +6,6 @@
|
|||
declare module "*i18n?dir2json&ext=.json&1" {
|
||||
const json: {
|
||||
"en": string;
|
||||
"fr": string;
|
||||
};
|
||||
export default json;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,28 @@
|
|||
<template>
|
||||
<template v-if="isAdmin">
|
||||
<v-divider />
|
||||
<div class="d-flex align-center text-caption text-medium-emphasis pa-2">
|
||||
<div class="d-flex ms-auto">
|
||||
<BuildCommit class="me-2" />
|
||||
<BuildVersion />
|
||||
</div>
|
||||
<v-divider />
|
||||
<div class="d-flex align-center text-caption text-medium-emphasis pa-2">
|
||||
<div class="d-flex ms-auto">
|
||||
<v-btn
|
||||
prepend-icon="mdi-help-circle-outline"
|
||||
variant="text"
|
||||
color="grey"
|
||||
size="small"
|
||||
class="text-caption"
|
||||
href="https://komga.org"
|
||||
target="_blank"
|
||||
text="Documentation"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
<div
|
||||
v-if="isAdmin"
|
||||
class="d-flex align-center text-caption text-medium-emphasis pa-2"
|
||||
>
|
||||
<div class="d-flex ms-auto">
|
||||
<BuildCommit class="me-2" />
|
||||
<BuildVersion />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
|
|
|||
Loading…
Reference in a new issue