Skip to content

Commit

Permalink
allow subtitle override
Browse files Browse the repository at this point in the history
  • Loading branch information
meonkeys committed Nov 25, 2024
1 parent c672907 commit 1864e1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/components/services/Olivetin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<template #content>
<p class="title is-4">{{ item.name }}</p>
<p class="subtitle is-6">
<template v-if="versionstring">
<template v-if="item.subtitle">
{{ item.subtitle }}
</template>
<template v-else-if="versionstring">
Version {{ versionstring }}
</template>
</p>
Expand Down
5 changes: 4 additions & 1 deletion src/components/services/Traefik.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<template #content>
<p class="title is-4">{{ item.name }}</p>
<p class="subtitle is-6">
<template v-if="versionstring">
<template v-if="item.subtitle">
{{ item.subtitle }}
</template>
<template v-else-if="versionstring">
Version {{ versionstring }}
</template>
</p>
Expand Down
5 changes: 4 additions & 1 deletion src/components/services/Wallabag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
<template #content>
<p class="title is-4">{{ item.name }}</p>
<p class="subtitle is-6">
<template v-if="versionstring">
<template v-if="item.subtitle">
{{ item.subtitle }}
</template>
<template v-else-if="versionstring">
Version {{ versionstring }}
</template>
</p>
Expand Down

0 comments on commit 1864e1d

Please sign in to comment.