]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/list.pipe.ts
update download target update for octopus release
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / pipes / list.pipe.ts
1 import { Pipe, PipeTransform } from '@angular/core';
2
3 @Pipe({
4 name: 'list'
5 })
6 export class ListPipe implements PipeTransform {
7 transform(value: any): any {
8 return value.join(', ');
9 }
10 }