]> git.proxmox.com Git - ceph.git/blame - 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
CommitLineData
11fdf7f2
TL
1import { Pipe, PipeTransform } from '@angular/core';
2
3@Pipe({
4 name: 'list'
5})
6export class ListPipe implements PipeTransform {
7 transform(value: any): any {
8 return value.join(', ');
9 }
10}