summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/iops.pipe.ts
blob: 9644801f8cecc0d18553ecdaef76d0b7939fe0c5 (plain)
1
2
3
4
5
6
7
8
9
10
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'iops'
})
export class IopsPipe implements PipeTransform {
  transform(value: any): any {
    return `${value} IOPS`;
  }
}