mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fix frontend
This commit is contained in:
parent
552005e2a4
commit
0ec7caac42
@ -77,7 +77,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-collapse class="pb-4 pt-5" v-model="visible">
|
<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" />
|
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
|
||||||
</b-collapse>
|
</b-collapse>
|
||||||
</div>
|
</div>
|
||||||
@ -86,14 +86,14 @@
|
|||||||
<script>
|
<script>
|
||||||
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
||||||
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
||||||
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
|
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'slot-creation',
|
name: 'slot-creation',
|
||||||
components: {
|
components: {
|
||||||
DecayInformationShort,
|
DecayInformationShort,
|
||||||
DecayInformationLong,
|
DecayInformationLong,
|
||||||
DecayInformationFirstTransaction,
|
DecayInformationBeforeStartblock,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
amount: {
|
amount: {
|
||||||
|
|||||||
@ -43,19 +43,21 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-collapse class="pb-4 pt-5" v-model="visible">
|
<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>
|
</b-collapse>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
|
// import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'slot-decay',
|
name: 'slot-decay',
|
||||||
|
/*
|
||||||
components: {
|
components: {
|
||||||
DecayInformationDecay,
|
DecayInformationDecay,
|
||||||
},
|
},
|
||||||
|
*/
|
||||||
props: {
|
props: {
|
||||||
amount: {
|
amount: {
|
||||||
type: String,
|
type: String,
|
||||||
|
|||||||
@ -80,7 +80,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-collapse class="pb-4 pt-5" v-model="visible">
|
<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" />
|
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
|
||||||
</b-collapse>
|
</b-collapse>
|
||||||
</div>
|
</div>
|
||||||
@ -89,14 +89,14 @@
|
|||||||
<script>
|
<script>
|
||||||
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
||||||
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
||||||
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
|
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'slot-receive',
|
name: 'slot-receive',
|
||||||
components: {
|
components: {
|
||||||
DecayInformationShort,
|
DecayInformationShort,
|
||||||
DecayInformationLong,
|
DecayInformationLong,
|
||||||
DecayInformationFirstTransaction,
|
DecayInformationBeforeStartblock,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
amount: {
|
amount: {
|
||||||
|
|||||||
@ -77,7 +77,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b-collapse class="pb-4 pt-5" v-model="visible">
|
<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" />
|
<decay-information-long v-else :amount="amount" :decay="decay" :typeId="typeId" />
|
||||||
</b-collapse>
|
</b-collapse>
|
||||||
</div>
|
</div>
|
||||||
@ -86,13 +86,13 @@
|
|||||||
<script>
|
<script>
|
||||||
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
||||||
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
import DecayInformationLong from '../DecayInformations/DecayInformation-Long'
|
||||||
import DecayInformationFirstTransaction from '../DecayInformations/DecayInformation-FirstTransaction'
|
import DecayInformationBeforeStartblock from '../DecayInformations/DecayInformation-BeforeStartblock'
|
||||||
export default {
|
export default {
|
||||||
name: 'slot-send',
|
name: 'slot-send',
|
||||||
components: {
|
components: {
|
||||||
DecayInformationShort,
|
DecayInformationShort,
|
||||||
DecayInformationLong,
|
DecayInformationLong,
|
||||||
DecayInformationFirstTransaction,
|
DecayInformationBeforeStartblock,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
amount: {
|
amount: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user