Francesco Torchia 4626d56acd
Lint fixes
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-11-12 11:50:20 +01:00

48 lines
754 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>