4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/frontend/vue/components/Stations/Profile/BackendNonePanel.vue
2022-12-16 03:17:52 -06:00

21 lines
579 B
Vue

<template>
<section class="card" role="region" id="profile-backend">
<div class="card-header bg-primary-dark">
<h3 class="card-title">{{ $gettext('AutoDJ Disabled') }}</h3>
</div>
<div class="card-body">
<p class="card-text">
{{
$gettext('AutoDJ has been disabled for this station. No music will automatically be played when a source is not live.')
}}
</p>
</div>
</section>
</template>
<script>
export default {
inheritAttrs: false,
}
</script>