mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
fix(process-bar): Added cart-checkout process type to filtered selection of processes
Ref: #5430
This commit is contained in:
@@ -69,7 +69,10 @@ export class ShellProcessBarComponent implements OnInit {
|
||||
switchMap((section) => this._app.getProcesses$(section)),
|
||||
// TODO: Nach Prämie release kann der Filter rausgenommen werden
|
||||
map((processes) =>
|
||||
processes.filter((process) => process.type === 'cart'),
|
||||
processes.filter(
|
||||
(process) =>
|
||||
process.type === 'cart' || process.type === 'cart-checkout',
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user