mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
25 lines
567 B
Vue
25 lines
567 B
Vue
<template functional>
|
|
<div class="card-many-to-many__list-wrapper">
|
|
<div class="card-many-to-many__list">
|
|
<div
|
|
v-for="item in props.value"
|
|
:key="item.id"
|
|
class="card-many-to-many__item card-link-row"
|
|
:class="{
|
|
'card-link-row--unnamed': item.value === null || item.value === '',
|
|
}"
|
|
>
|
|
<span class="card-many-to-many__name">
|
|
{{ item.value || 'unnamed row ' + item.id }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
height: 22,
|
|
}
|
|
</script>
|