mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Detailseite Header Bestellkanal
This commit is contained in:
@@ -13,8 +13,11 @@ export class EnvironmentChannelPipe implements PipeTransform {
|
||||
]);
|
||||
|
||||
transform(clientChannel: EnvironmentChannel = 0, join: string = ' '): any {
|
||||
const channels: string[] = [];
|
||||
if (clientChannel === 0) {
|
||||
return this.channels.get(0);
|
||||
}
|
||||
|
||||
const channels: string[] = [];
|
||||
this.channels.forEach((value, key) => {
|
||||
// tslint:disable-next-line: no-bitwise
|
||||
if ((clientChannel | key) === key) {
|
||||
|
||||
Reference in New Issue
Block a user