Browse Source

Reordering

pull/3743/head
Thomas Kaul 12 months ago
parent
commit
766a187731
  1. 14
      apps/api/src/services/api/api.service.ts

14
apps/api/src/services/api/api.service.ts

@ -61,6 +61,13 @@ export class ApiService {
}) })
]; ];
if (dataSource) {
filters.push({
id: dataSource,
type: 'DATA_SOURCE'
});
}
if (holdingType) { if (holdingType) {
filters.push({ filters.push({
id: holdingType, id: holdingType,
@ -75,13 +82,6 @@ export class ApiService {
}); });
} }
if (dataSource) {
filters.push({
id: dataSource,
type: 'DATA_SOURCE'
});
}
if (symbol) { if (symbol) {
filters.push({ filters.push({
id: symbol, id: symbol,

Loading…
Cancel
Save