Browse Source

Suggested changes

pull/5696/head
Raj Gupta 4 weeks ago
parent
commit
cf5132ac61
  1. 3
      CHANGELOG.md
  2. 14
      libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts

3
CHANGELOG.md

@ -9,14 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Unreleased
- Extend Storybook stories of accounts table component by loading state story
### Changed
- Restricted the selection of the retirement date picker in the _FIRE_ calculator to a future date
- Improved the support for mutual funds in the _Financial Modeling Prep_ service (get asset profiles)
- Improved the language localization for German (`de`)
- Upgraded `prisma` from version `6.16.1` to `6.16.3`
- Extended the Storybook stories of accounts table component by loading state story
## 2.204.0 - 2025-09-30

14
libs/ui/src/lib/accounts-table/accounts-table.component.stories.ts

@ -107,9 +107,9 @@ export default {
type Story = StoryObj<GfAccountsTableComponent>;
export const Default: Story = {
export const Loading: Story = {
args: {
accounts,
accounts: undefined,
baseCurrency: 'USD',
deviceType: 'desktop',
locale: 'en-US',
@ -120,15 +120,15 @@ export const Default: Story = {
showTransactions: true,
showValue: true,
showValueInBaseCurrency: true,
totalBalanceInBaseCurrency: 12428.2,
totalValueInBaseCurrency: 107971.70321466809,
transactionCount: 12
totalBalanceInBaseCurrency: 0,
totalValueInBaseCurrency: 0,
transactionCount: 0
}
};
export const Loading: Story = {
export const Default: Story = {
args: {
accounts: undefined,
accounts,
baseCurrency: 'USD',
deviceType: 'desktop',
locale: 'en-US',

Loading…
Cancel
Save