mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Add support to create account cash balances * Update changelog --------- Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>pull/3306/head
Bastien Jeannelle
10 months ago
committed by
GitHub
11 changed files with 244 additions and 63 deletions
@ -0,0 +1,12 @@ |
|||
import { IsISO8601, IsNumber, IsUUID } from 'class-validator'; |
|||
|
|||
export class CreateAccountBalanceDto { |
|||
@IsUUID() |
|||
accountId: string; |
|||
|
|||
@IsNumber() |
|||
balance: number; |
|||
|
|||
@IsISO8601() |
|||
date: string; |
|||
} |
@ -1,3 +1,10 @@ |
|||
:host { |
|||
display: block; |
|||
} |
|||
|
|||
:host-context(.is-dark-theme) { |
|||
input { |
|||
color: rgb(var(--light-primary-text)); |
|||
background-color: rgb(var(--palette-foreground-text-light)); |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue