mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* add multi-filter support for transaction filtering with auto completion * update changelog * fix table for transaction for accounts without platform * simplify readme file since docker compose build is not required (#75) * simplify readme file since docker compose build is not required * add anchor navigation in README.md * Improve UI * Refactoring * Refactoring * Feature/travis (#77) * integrate travis * fix prettier transactions-page.component.ts * change base branch to main * fetch all branches in .travis.yml * Bugfix/keep current menu item active (#78) * Keep current menu item active * Update changelog * Feature/travis (#77) * integrate travis * fix prettier transactions-page.component.ts * change base branch to main * fetch all branches in .travis.yml * Keep current menu item active * Update changelog Co-authored-by: Valentin Zickner <3200232+vzickner@users.noreply.github.com> * add multi-filter support for transaction filtering with auto completion * update changelog * fix table for transaction for accounts without platform * Improve UI * Refactoring * Refactoring * Update changelog Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>pull/79/head
committed by
GitHub
7 changed files with 516 additions and 336 deletions
@ -1,3 +1,5 @@ |
|||
import { Account, Order } from '@prisma/client'; |
|||
import { Account, Order, Platform } from '@prisma/client'; |
|||
|
|||
export type OrderWithAccount = Order & { Account?: Account }; |
|||
type AccountWithPlatform = Account & { Platform?: Platform }; |
|||
|
|||
export type OrderWithAccount = Order & { Account?: AccountWithPlatform }; |
|||
|
File diff suppressed because it is too large
Loading…
Reference in new issue