rename address-render-box component

(cfr b9602aa72 - file had been moved and renamed,
now we just rename component name into import and template
)
This commit is contained in:
2021-09-02 22:19:03 +02:00
parent b14b27c110
commit d8b2d3cd90
8 changed files with 26 additions and 26 deletions

View File

@@ -150,7 +150,7 @@
</div>
<div v-else>
<p>{{ handlingThirdParty.text }}</p>
<show-address :address="handlingThirdParty.address"></show-address>
<address-render-box :address="handlingThirdParty.address"></address-render-box>
<ul class="record_actions">
<li>
@@ -173,7 +173,7 @@
<ul>
<li v-for="t in thirdParties">
<p>{{ t.text }}</p>
<show-address :address="t.address"></show-address>
<address-render-box :address="t.address"></address-render-box>
<ul class="record_actions">
<button :title="$t('remove_thirdparty')" class="btn btn-remove"
@@ -231,7 +231,7 @@ import AddResult from './components/AddResult.vue';
import AddEvaluation from './components/AddEvaluation.vue';
import PersonRenderBox from 'ChillPersonAssets/vuejs/_components/Entity/PersonRenderBox.vue';
import AddPersons from 'ChillPersonAssets/vuejs/_components/AddPersons.vue';
import ShowAddress from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
import AddressRenderBox from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
const i18n = {
messages: {
@@ -275,7 +275,7 @@ export default {
AddEvaluation,
AddPersons,
PersonRenderBox,
ShowAddress,
AddressRenderBox,
},
i18n,
data() {