Francesco Torchia 118aaf16b7
Latest changes from Harvester master - a537c1ae38eb7030542ac371f24ae3336cd9d422
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:01:40 +02:00

42 lines
730 B
Vue

<script>
import { HCI } from '../types';
export default {
props: {
value: {
type: String,
default: ''
},
},
data() {
const scheduleList = this.$store.getters['harvester/all'](HCI.SCHEDULE_VM_BACKUP) || [];
return { scheduleList };
},
computed: {
vmSchedule() {
if (!this.value) {
return '';
} else {
return this.scheduleList.find(s => s.id === this.value);
}
},
to() {
return this.vmSchedule?.detailLocation;
},
}
};
</script>
<template>
<router-link v-if="to" :to="to">
{{ value }}
</router-link>
<span v-else-if="value">
{{ value }}
</span>
<span v-else class="text-muted">
&mdash;
</span>
</template>