diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-03 18:34:15 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-03 18:34:15 -0400 |
commit | 3cb145756351abd152acbcb5cabbf223fddf22bb (patch) | |
tree | 39dcffb2434738c0927a899efd2e2fef4dabdaf5 /ufund-ui/src/app/components/funding-basket | |
parent | 0652eb445728806d7fd6a50021a763051503ab36 (diff) | |
parent | 3e5422b90a09d1ed2cfffae56abf8dbe361f6c27 (diff) | |
download | JellySolutions-3cb145756351abd152acbcb5cabbf223fddf22bb.tar.gz JellySolutions-3cb145756351abd152acbcb5cabbf223fddf22bb.tar.bz2 JellySolutions-3cb145756351abd152acbcb5cabbf223fddf22bb.zip |
Merge remote-tracking branch 'origin/need-list-abstraction' into need-list-abstraction
# Conflicts:
# ufund-ui/src/app/components/cupboard/cupboard.component.html
# ufund-ui/src/app/components/cupboard/cupboard.component.ts
# ufund-ui/src/app/components/funding-basket/funding-basket.component.html
# ufund-ui/src/app/components/need-list/need-list.component.ts
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts index 847baee..0b3b9f3 100644 --- a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts +++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts @@ -2,7 +2,7 @@ import {Component, Input, OnInit, ViewChild} from '@angular/core'; import {UsersService} from '../../services/users.service'; import {Router} from '@angular/router'; import {CupboardService} from '../../services/cupboard.service'; -import {catchError, firstValueFrom, Observable} from 'rxjs'; +import {catchError, firstValueFrom, Observable, of} from 'rxjs'; import {AuthService} from '../../services/auth.service'; import {ToastsService, ToastType} from '../../services/toasts.service'; @@ -91,4 +91,5 @@ export class FundingBasketComponent implements OnInit { } + protected readonly of = of; } |