fix frontend

This commit is contained in:
Ulf Gebhardt 2022-03-05 12:56:16 +01:00
parent 552005e2a4
commit 0ec7caac42
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
4 changed files with 13 additions and 11 deletions

View File

@ -77,7 +77,7 @@
</div>
<b-collapse class="pb-4 pt-5" v-model="visible">
<decay-information-first-transaction v-if="decay.start === null" :decay="decay" />
<decay-information-before-startblock v-if="decay.start === null" />
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
</b-collapse>
</div>
@ -86,14 +86,14 @@
<script>
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
export default {
name: 'slot-creation',
components: {
DecayInformationShort,
DecayInformationLong,
DecayInformationFirstTransaction,
DecayInformationBeforeStartblock,
},
props: {
amount: {

View File

@ -43,19 +43,21 @@
</div>
<b-collapse class="pb-4 pt-5" v-model="visible">
<decay-information-decay :balance="balance" :decay="decay" />
<!--<decay-information-decay :balance="balance" :decay="decay" />-->
</b-collapse>
</div>
</div>
</template>
<script>
import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
// import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
export default {
name: 'slot-decay',
/*
components: {
DecayInformationDecay,
},
*/
props: {
amount: {
type: String,

View File

@ -80,7 +80,7 @@
</div>
<b-collapse class="pb-4 pt-5" v-model="visible">
<decay-information-first-transaction v-if="decay.start === null" :decay="decay" />
<decay-information-before-startblock v-if="decay.start === null" />
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
</b-collapse>
</div>
@ -89,14 +89,14 @@
<script>
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
export default {
name: 'slot-receive',
components: {
DecayInformationShort,
DecayInformationLong,
DecayInformationFirstTransaction,
DecayInformationBeforeStartblock,
},
props: {
amount: {

View File

@ -77,7 +77,7 @@
</div>
<b-collapse class="pb-4 pt-5" v-model="visible">
<decay-information-first-transaction v-if="decay.start === null" :decay="decay" />
<decay-information-before-startblock v-if="decay.start === null" />
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
</b-collapse>
</div>
@ -86,13 +86,13 @@
<script>
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
export default {
name: 'slot-send',
components: {
DecayInformationShort,
DecayInformationLong,
DecayInformationFirstTransaction,
DecayInformationBeforeStartblock,
},
props: {
amount: {