fix all errors

This commit is contained in:
Peter Maquiran
2024-10-17 12:17:24 +01:00
parent bfd4e44b5b
commit 02d5e3e1ec
83 changed files with 257 additions and 206 deletions
+4 -1
View File
@@ -39,7 +39,10 @@ export class HttpService {
let httpParams = new HttpParams();
if (options?.params) {
Object.keys(options.params).forEach(key => {
httpParams = httpParams.append(key, String(options.params[key]));
if(options.params[key]) {
httpParams = httpParams.append(key, options.params[key]);
}
});
}