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

@@ -35,7 +35,7 @@
<ul class="list-content fa-ul">
<li v-if="thirdparty.address">
<i class="fa fa-li fa-map-marker"></i>
<show-address :address="thirdparty.address" :isMultiline="isMultiline"></show-address>
<address-render-box :address="thirdparty.address" :isMultiline="isMultiline"></address-render-box>
</li>
<li v-if="thirdparty.telephone">
<i class="fa fa-li fa-mobile"></i>
@@ -57,13 +57,13 @@
</template>
<script>
import ShowAddress from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
import AddressRenderBox from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
import {dateToISO} from 'ChillMainAssets/chill/js/date.js';
export default {
name: "ThirdPartyRenderBox",
components: {
ShowAddress
AddressRenderBox
},
props: ['thirdparty', 'options'],
computed: {