FreeDATA/gui/src/components/settings_updater.vue

17 lines
533 B
Vue
Raw Normal View History

2024-02-21 10:18:57 +00:00
<script setup lang="ts">
import settings_updater_core from "./settings_updater_core.vue";
</script>
2024-02-20 10:05:57 +00:00
<template>
<div>
2024-02-21 10:18:57 +00:00
<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 />
2024-02-20 10:05:57 +00:00
</div>
</template>