1
0
mirror of https://github.com/bastienwirtz/homer.git synced 2025-03-13 14:59:23 +01:00
This commit is contained in:
Bastien Wirtz 2024-11-13 12:12:15 +01:00
parent 012f472aa7
commit a40acb2fee
3 changed files with 9 additions and 8 deletions

View File

@ -9,7 +9,7 @@
href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration" href="https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md#configuration"
target="_blank" target="_blank"
> >
Get started Get started
</a> </a>
</p> </p>
</div> </div>

View File

@ -8,7 +8,8 @@
<strong v-if="unread > 0" class="notif unread" title="Unread"> <strong v-if="unread > 0" class="notif unread" title="Unread">
{{ unread }} {{ unread }}
</strong> </strong>
<strong v-if="serverError" class="notif errors" <strong
v-if="serverError" class="notif errors"
title="Connection error to the FreshRSS API, check url username and password in config.yml">?</strong> title="Connection error to the FreshRSS API, check url username and password in config.yml">?</strong>
</div> </div>
</template> </template>
@ -21,13 +22,13 @@ import Generic from "./Generic.vue";
export default { export default {
name: "FreshRSS", name: "FreshRSS",
components: {
Generic,
},
mixins: [service], mixins: [service],
props: { props: {
item: Object, item: Object,
}, },
components: {
Generic,
},
data: () => { data: () => {
return { return {
subscriptions: 0, subscriptions: 0,

View File

@ -23,13 +23,13 @@ import Generic from "./Generic.vue";
export default { export default {
name: "Gotify", name: "Gotify",
components: {
Generic,
},
mixins: [service], mixins: [service],
props: { props: {
item: Object, item: Object,
}, },
components: {
Generic,
},
data: () => ({ data: () => ({
health: {}, health: {},
messages: 0, messages: 0,