pull/826/head
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"
target="_blank"
>
Get started
Get started
</a>
</p>
</div>

View File

@ -8,7 +8,8 @@
<strong v-if="unread > 0" class="notif unread" title="Unread">
{{ unread }}
</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>
</div>
</template>
@ -21,13 +22,13 @@ import Generic from "./Generic.vue";
export default {
name: "FreshRSS",
components: {
Generic,
},
mixins: [service],
props: {
item: Object,
},
components: {
Generic,
},
data: () => {
return {
subscriptions: 0,

View File

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