diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:55:19 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:55:19 -0400 |
commit | 04db6f32b249ffb17c571cd6b16c8c54397f0be4 (patch) | |
tree | 1cd8fb31b849b4d5be00d4be0e3db92bbbafb5e1 /ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | |
parent | 483f74a420f7aabe4ef0eeafeb668bd9f0da12be (diff) | |
download | JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.tar.gz JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.tar.bz2 JellySolutions-04db6f32b249ffb17c571cd6b16c8c54397f0be4.zip |
Fix typos
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | 4 |
1 files changed, 2 insertions, 2 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 c807271..371015a 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, of} from 'rxjs'; +import {firstValueFrom, of} from 'rxjs'; import {AuthService} from '../../services/auth.service'; import {ToastsService, ToastType} from '../../services/toasts.service'; import {userType} from '../../models/User'; @@ -60,7 +60,7 @@ export class FundingBasketComponent implements OnInit { resetColor(ev: any) { // for (let contribution of document.querySelectorAll<HTMLInputElement>('.contribution')!) {} - (ev.target as HTMLInputElement).setAttribute("style", "border-color: unset") + (ev.target as HTMLInputElement).setAttribute("style", "") } protected readonly of = of; |