Deprecated following as non standardEntity tasks, products, productcategories, services, servicecategories
This commit is contained in:
15
components/columnRenderings/profile.vue
Normal file
15
components/columnRenderings/profile.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
row: {
|
||||
type: Object,
|
||||
required: true,
|
||||
default: {}
|
||||
}
|
||||
})
|
||||
|
||||
const profileStore = useProfileStore()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<span>{{props.row.profile ? profileStore.getProfileById(props.row.profile).fullName : ''}}</span>
|
||||
</template>
|
||||
Reference in New Issue
Block a user