This commit is contained in:
Sirttas
2026-06-06 23:52:50 +02:00
parent 7e0ea10d68
commit 47bd728530
3 changed files with 18 additions and 14 deletions
+4 -3
View File
@@ -1,14 +1,15 @@
<script setup lang="ts">
import {Transfer, TransferTypes} from "@/transaction/transaction.ts";
import {TransferTypes} from "@/transaction/transaction.ts";
import {LedgerLabel, systemLedger, useLedgersStore} from "@/ledger";
import {getMarketType, IskLabel, MarketTypeLabel} from "@/market";
import {computedAsync} from "@vueuse/core";
import {TransferResponse} from "@/generated/mammon";
type TransferWithValue = Transfer & { marketTypeId: number; };
type TransferWithValue = TransferResponse & { marketTypeId: number; };
interface Props {
transfers?: Transfer[]
transfers?: TransferResponse[]
}
const props = defineProps<Props>();