fix tx isdone checkbox text size
This commit is contained in:
@@ -26,7 +26,7 @@ const setTransactionDone = async (transaction: Transaction): Promise<void> => {
|
|||||||
comment: transaction.comment,
|
comment: transaction.comment,
|
||||||
amount: transaction.amount,
|
amount: transaction.amount,
|
||||||
fees: 0,
|
fees: 0,
|
||||||
isDone: true,
|
isDone: transaction.isDone,
|
||||||
date: new Date(transaction.date),
|
date: new Date(transaction.date),
|
||||||
} as UpdateTransactionDTO
|
} as UpdateTransactionDTO
|
||||||
try {
|
try {
|
||||||
@@ -132,7 +132,7 @@ onMounted(async () => {
|
|||||||
<div class="flex flex-row justify-between">
|
<div class="flex flex-row justify-between">
|
||||||
<span class="text-xl !font-semibold !pl-2">Planned transactions</span>
|
<span class="text-xl !font-semibold !pl-2">Planned transactions</span>
|
||||||
<div class="flex flex-row gap-2 items-center">
|
<div class="flex flex-row gap-2 items-center">
|
||||||
<Checkbox v-model="showIsDone" binary value=" Показывать выполненные" @change="fetchData(true, false, true)"/>
|
<Checkbox v-model="showIsDone" binary value=" Показывать выполненные" @change="plannedOffset = 0;fetchData(true, false, true)"/>
|
||||||
<span class="!text-sm">Выполненные</span>
|
<span class="!text-sm">Выполненные</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user