mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-10 11:21:36 +00:00
Feed Healthy indicator
This commit is contained in:
parent
7f5fde1de2
commit
2ada293e8a
1 changed files with 28 additions and 0 deletions
28
client/components/widgets/FeedHealthyIndicator.vue
Normal file
28
client/components/widgets/FeedHealthyIndicator.vue
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<template>
|
||||||
|
<p v-if="value" class="text-success">
|
||||||
|
<ui-tooltip direction="top"
|
||||||
|
:text="$strings.LabelFeedWorking">
|
||||||
|
<span class="material-icons text-2xl">cloud_done</span>
|
||||||
|
</ui-tooltip>
|
||||||
|
</p>
|
||||||
|
<p v-else class="text-error">
|
||||||
|
<ui-tooltip direction="top"
|
||||||
|
:text="$strings.LabelFeedNotWorking">
|
||||||
|
<span class="material-icons text-2xl">cloud_off</span>
|
||||||
|
</ui-tooltip>
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
value: Boolean
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
methods: {},
|
||||||
|
mounted() {}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue