]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/empty.pipe.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / pipes / empty.pipe.ts
1 import { Pipe, PipeTransform } from '@angular/core';
2
3 import * as _ from 'lodash';
4
5 @Pipe({
6 name: 'empty'
7 })
8 export class EmptyPipe implements PipeTransform {
9 transform(value: any): any {
10 return _.isUndefined(value) || _.isNull(value) ? '-' : value;
11 }
12 }