1 <cd-table [data]="data"
2 [columns]="poolConfigurationColumns"
6 <ng-template #configurationSourceTpl
9 <div [ngSwitch]="+value">
10 <span *ngSwitchCase="sourceField.global" i18n>Global</span>
11 <strong *ngSwitchCase="sourceField.image" i18n>Image</strong>
12 <strong *ngSwitchCase="sourceField.pool" i18n>Pool</strong>
16 <ng-template #configurationValueTpl
19 <div [ngSwitch]="row.type">
20 <span *ngSwitchCase="typeField.bps">{{ value | dimlessBinaryPerSecond }}</span>
21 <span *ngSwitchCase="typeField.milliseconds">{{ value | milliseconds }}</span>
22 <span *ngSwitchCase="typeField.iops">{{ value | iops }}</span>
23 <span *ngSwitchDefault>{{ value }}</span>