mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Merge pull request #2660 from gradido/2589-Missing-Message-on-old-Transactions
refactor(frontend): missing message on old transactions
This commit is contained in:
commit
330657fcad
@ -1,5 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="decayinformation-startblock">
|
<div class="decayinformation-startblock">
|
||||||
|
<div class="my-4">
|
||||||
|
<div class="font-weight-bold pb-2">{{ $t('form.memo') }}</div>
|
||||||
|
<div>{{ memo }}</div>
|
||||||
|
</div>
|
||||||
<div class="mt-3 mb-3 text-center">
|
<div class="mt-3 mb-3 text-center">
|
||||||
<b>{{ $t('decay.before_startblock_transaction') }}</b>
|
<b>{{ $t('decay.before_startblock_transaction') }}</b>
|
||||||
</div>
|
</div>
|
||||||
@ -8,5 +12,11 @@
|
|||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'DecayInformation-StartBlock',
|
name: 'DecayInformation-StartBlock',
|
||||||
|
props: {
|
||||||
|
memo: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="decay-information-box">
|
<div class="decay-information-box">
|
||||||
<decay-information-before-startblock v-if="decay.start === null" />
|
<decay-information-before-startblock v-if="decay.start === null" :memo="memo" />
|
||||||
<decay-information-decay-startblock
|
<decay-information-decay-startblock
|
||||||
v-else-if="isStartBlock"
|
v-else-if="isStartBlock"
|
||||||
:amount="amount"
|
:amount="amount"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user