MateuszMichalowski 0f134c8a15
fix(frontend): migration feedback fixes (#3359)
* fix(frontend): fixes after feedback

* fix(frontend): fixes after feedback

* fix(frontend): fixes after feedback
2024-08-26 08:41:28 +02:00

32 lines
670 B
Vue

<template>
<div class="decay-row">
<BRow v-if="decay">
<BCol cols="5">
<div class="text-end">
<IBiDropletHalf height="15" class="mb-1" />
</div>
</BCol>
<BCol cols="7">
<div class="gdd-transaction-list-item-decay">
<decay-information-short decaytyp="short" :decay="decay" />
</div>
</BCol>
</BRow>
</div>
</template>
<script>
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
export default {
name: 'DecayRow',
components: {
DecayInformationShort,
},
props: {
decay: {
type: String,
required: false,
},
},
}
</script>