mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
change review from ulf
This commit is contained in:
parent
5238a0a5d6
commit
1d366bcb5d
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="amount-and-name">
|
<div class="amount-and-name-row">
|
||||||
<b-row>
|
<b-row>
|
||||||
<b-col cols="5">
|
<b-col cols="5">
|
||||||
<div class="text-right">
|
<div class="text-right">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Amount-And-Name',
|
name: 'AmountAndNameRow',
|
||||||
props: {
|
props: {
|
||||||
amount: {
|
amount: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -8,7 +8,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Collapse-Icon',
|
name: 'CollapseIcon',
|
||||||
props: {
|
props: {
|
||||||
visible: {
|
visible: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="transaction-rows-date">
|
<div class="date-row">
|
||||||
<b-row>
|
<b-row>
|
||||||
<b-col cols="5">
|
<b-col cols="5">
|
||||||
<div class="text-right">{{ $t('form.date') }}</div>
|
<div class="text-right">{{ $t('form.date') }}</div>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Transaction-Rows-Date',
|
name: 'DateRow',
|
||||||
props: {
|
props: {
|
||||||
balanceDate: {
|
balanceDate: {
|
||||||
type: String,
|
type: String,
|
||||||
|
|||||||
@ -17,7 +17,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
import DecayInformationShort from '../DecayInformations/DecayInformation-Short'
|
||||||
export default {
|
export default {
|
||||||
name: 'Decay-Row',
|
name: 'DecayRow',
|
||||||
components: {
|
components: {
|
||||||
DecayInformationShort,
|
DecayInformationShort,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Memo-Row',
|
name: 'MemoRow',
|
||||||
props: {
|
props: {
|
||||||
memo: {
|
memo: {
|
||||||
type: String,
|
type: String,
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'Type-Icon',
|
name: 'TypeIcon',
|
||||||
props: {
|
props: {
|
||||||
icon: {
|
icon: {
|
||||||
type: String,
|
type: String,
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
<b-col cols="11">
|
<b-col cols="11">
|
||||||
<!-- Amount / Name || Text -->
|
<!-- Amount / Name || Text -->
|
||||||
<amount-and-name :amount="amount" :linkedUser="linkedUser" />
|
<amount-and-name-row :amount="amount" :linkedUser="linkedUser" />
|
||||||
|
|
||||||
<!-- Nachricht Memo -->
|
<!-- Nachricht Memo -->
|
||||||
<memo-row :memo="memo" />
|
<memo-row :memo="memo" />
|
||||||
@ -40,7 +40,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
||||||
import TypeIcon from '../TransactionRows/TypeIcon'
|
import TypeIcon from '../TransactionRows/TypeIcon'
|
||||||
import AmountAndName from '../TransactionRows/AmountAndName'
|
import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
||||||
import MemoRow from '../TransactionRows/MemoRow'
|
import MemoRow from '../TransactionRows/MemoRow'
|
||||||
import DateRow from '../TransactionRows/DateRow'
|
import DateRow from '../TransactionRows/DateRow'
|
||||||
import DecayRow from '../TransactionRows/DecayRow'
|
import DecayRow from '../TransactionRows/DecayRow'
|
||||||
@ -51,7 +51,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
CollapseIcon,
|
CollapseIcon,
|
||||||
TypeIcon,
|
TypeIcon,
|
||||||
AmountAndName,
|
AmountAndNameRow,
|
||||||
MemoRow,
|
MemoRow,
|
||||||
DateRow,
|
DateRow,
|
||||||
DecayRow,
|
DecayRow,
|
||||||
|
|||||||
@ -12,7 +12,10 @@
|
|||||||
|
|
||||||
<b-col cols="11">
|
<b-col cols="11">
|
||||||
<!-- Amount / Name || Text -->
|
<!-- Amount / Name || Text -->
|
||||||
<amount-and-name :amount="amount" :text="$t('decay.decay_since_last_transaction')" />
|
<amount-and-name-row
|
||||||
|
:amount="amount"
|
||||||
|
:text="$t('decay.decay_since_last_transaction')"
|
||||||
|
/>
|
||||||
</b-col>
|
</b-col>
|
||||||
</b-row>
|
</b-row>
|
||||||
</div>
|
</div>
|
||||||
@ -26,7 +29,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
||||||
import TypeIcon from '../TransactionRows/TypeIcon'
|
import TypeIcon from '../TransactionRows/TypeIcon'
|
||||||
import AmountAndName from '../TransactionRows/AmountAndName.vue'
|
import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
||||||
import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
|
import DecayInformationDecay from '../DecayInformations/DecayInformation-Decay'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -34,7 +37,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
CollapseIcon,
|
CollapseIcon,
|
||||||
TypeIcon,
|
TypeIcon,
|
||||||
AmountAndName,
|
AmountAndNameRow,
|
||||||
DecayInformationDecay,
|
DecayInformationDecay,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<b-col cols="11">
|
<b-col cols="11">
|
||||||
<!-- Amount / Name || Text -->
|
<!-- Amount / Name || Text -->
|
||||||
<amount-and-name :amount="amount" :linkedUser="linkedUser" />
|
<amount-and-name-row :amount="amount" :linkedUser="linkedUser" />
|
||||||
|
|
||||||
<!-- Nachricht Memo -->
|
<!-- Nachricht Memo -->
|
||||||
<memo-row :memo="memo" />
|
<memo-row :memo="memo" />
|
||||||
@ -41,7 +41,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
||||||
import TypeIcon from '../TransactionRows/TypeIcon'
|
import TypeIcon from '../TransactionRows/TypeIcon'
|
||||||
import AmountAndName from '../TransactionRows/AmountAndName'
|
import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
||||||
import MemoRow from '../TransactionRows/MemoRow'
|
import MemoRow from '../TransactionRows/MemoRow'
|
||||||
import DateRow from '../TransactionRows/DateRow'
|
import DateRow from '../TransactionRows/DateRow'
|
||||||
import DecayRow from '../TransactionRows/DecayRow'
|
import DecayRow from '../TransactionRows/DecayRow'
|
||||||
@ -52,7 +52,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
CollapseIcon,
|
CollapseIcon,
|
||||||
TypeIcon,
|
TypeIcon,
|
||||||
AmountAndName,
|
AmountAndNameRow,
|
||||||
MemoRow,
|
MemoRow,
|
||||||
DateRow,
|
DateRow,
|
||||||
DecayRow,
|
DecayRow,
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<b-col cols="11">
|
<b-col cols="11">
|
||||||
<!-- Amount / Name -->
|
<!-- Amount / Name -->
|
||||||
<amount-and-name :amount="amount" :linkedUser="linkedUser" />
|
<amount-and-name-row :amount="amount" :linkedUser="linkedUser" />
|
||||||
|
|
||||||
<!-- Memo -->
|
<!-- Memo -->
|
||||||
<memo-row :memo="memo" />
|
<memo-row :memo="memo" />
|
||||||
@ -41,7 +41,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
||||||
import TypeIcon from '../TransactionRows/TypeIcon'
|
import TypeIcon from '../TransactionRows/TypeIcon'
|
||||||
import AmountAndName from '../TransactionRows/AmountAndName'
|
import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
||||||
import MemoRow from '../TransactionRows/MemoRow'
|
import MemoRow from '../TransactionRows/MemoRow'
|
||||||
import DateRow from '../TransactionRows/DateRow'
|
import DateRow from '../TransactionRows/DateRow'
|
||||||
import DecayRow from '../TransactionRows/DecayRow'
|
import DecayRow from '../TransactionRows/DecayRow'
|
||||||
@ -52,7 +52,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
CollapseIcon,
|
CollapseIcon,
|
||||||
TypeIcon,
|
TypeIcon,
|
||||||
AmountAndName,
|
AmountAndNameRow,
|
||||||
MemoRow,
|
MemoRow,
|
||||||
DateRow,
|
DateRow,
|
||||||
DecayRow,
|
DecayRow,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user