Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/views/DataManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
primary als auch von einer secondary durchgeführt.<br />
Die Anleitung zur Konfiguration des Cloud-Dienstes findest Du
<a
href="https://github.com/openWB/core/wiki/Cloud-Sicherung"
:href="`https://wiki.openwb.de/doku.php?id=openwb:vc:${systemVersion}:software:system:datenverwaltung`"
target="_blank"
rel="noopener noreferrer"
>
Expand Down Expand Up @@ -445,6 +445,7 @@ library.add(fasSkullCrossbones, fasArchive, fasFileArchive, fasUpload, fasBoxOpe
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";

import ComponentState from "../components/mixins/ComponentState.vue";
import SystemVersion from "../components/mixins/SystemVersion.vue";
import OpenwbBackupCloudProxy from "../components/backup_clouds/OpenwbBackupCloudProxy.vue";
import OpenwbMonitoringProxy from "../components/monitoring/OpenwbMonitoringProxy.vue";

Expand All @@ -455,7 +456,7 @@ export default {
OpenwbBackupCloudProxy,
OpenwbMonitoringProxy,
},
mixins: [ComponentState],
mixins: [ComponentState, SystemVersion],
props: {
installAssistantActive: {
type: Boolean,
Expand Down
Loading