FreeDATA/gui/src/components/settings_updater.vue
2024-02-21 16:47:10 +00:00

20 lines
569 B
Vue

<script setup lang="ts">
import settings_updater_core from "./settings_updater_core.vue";
</script>
<template>
<div>
<div class="alert alert-warning" role="alert">
The updater might not working, yet! Please update manually if you are
running into problems!
</div>
<div class="alert alert-warning" role="alert">
The updater doesnt contain the server related parts, yet! We are
discussing this topic actually, feel free contributing with your opinion
on Discord!
</div>
<settings_updater_core />
</div>
</template>