22 lines
537 B
Vue
22 lines
537 B
Vue
|
|
<script setup>
|
||
|
|
|
||
|
|
import { ref } from 'vue';
|
||
|
|
import { Button } from 'pankow';
|
||
|
|
import Section from '../components/Section.vue';
|
||
|
|
|
||
|
|
const taskLogsMenu = ref([]);
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<Section :title="$t('settings.updates.title')">
|
||
|
|
<template #header-buttons>
|
||
|
|
<Button tool icon="fas fa-align-left" v-tooltip="$t('settings.updates.showLogsAction')" :menu="taskLogsMenu" :disabled="!taskLogsMenu.length"/>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<p v-html="$t('settings.updates.description')"></p>
|
||
|
|
</Section>
|
||
|
|
</div>
|
||
|
|
</template>
|