Feature/render tags in dialogs (#864)

* Render tags

* Update changelog
This commit is contained in:
Thomas Kaul
2022-04-25 22:37:34 +02:00
committed by GitHub
parent c61a415fb2
commit b7bbc029ac
11 changed files with 73 additions and 20 deletions

View File

@@ -1,8 +1,9 @@
import { Account, Order, Platform, SymbolProfile } from '@prisma/client';
import { Account, Order, Platform, SymbolProfile, Tag } from '@prisma/client';
type AccountWithPlatform = Account & { Platform?: Platform };
export type OrderWithAccount = Order & {
Account?: AccountWithPlatform;
SymbolProfile?: SymbolProfile;
tags?: Tag[];
};