Added Phases in Project Rendering

This commit is contained in:
2025-01-24 15:24:53 +01:00
parent 80a465fad8
commit 0bd894a61b
2 changed files with 22 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
<script setup>
const props = defineProps({
row: {
type: Object,
required: true,
default: {}
}
})
</script>
<template>
<span v-if="props.row.phases && props.row.phases.length > 0">{{props.row.phases.find(i => i.active).label}}</span>
</template>