|
@@ -20,7 +20,9 @@
|
|
|
</template>
|
|
|
<div class="pt-3px pr-3px">
|
|
|
<BasicForm @register="registerForm">
|
|
|
- <template #text="{ model, field }"> {{ `: ${model[field]}` }} </template>
|
|
|
+ <template #text="{ model, field }">
|
|
|
+ : <span v-if="model[field]">{{ ` ${model[field]}` }}</span>
|
|
|
+ </template>
|
|
|
<template #link="{ model, field }">
|
|
|
<a :href="model[field]" target="_blank">{{ `: ${model[field]}` }}</a>
|
|
|
</template>
|