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

@@ -11,7 +11,7 @@
{{ $t(getSuccessText) }}
</div>
<show-address :address="address"></show-address>
<address-render-box :address="address"></address-render-box>
<div v-if="showDateFrom" class='address-valid date-since'>
<h3>{{ $t(getValidFromDateText) }}</h3>
@@ -48,12 +48,12 @@
<script>
import { dateToISO, ISOToDate, ISOToDatetime } from 'ChillMainAssets/chill/js/date.js';
import ShowAddress from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
import AddressRenderBox from 'ChillMainAssets/vuejs/_components/Entity/AddressRenderBox.vue';
export default {
name: 'ShowAddressPane',
components: {
ShowAddress
AddressRenderBox
},
props: [
'context',