1 import { Component, Input, OnChanges } from '@angular/core';
3 import { CdTableSelection } from '../../../../shared/models/cd-table-selection';
6 selector: 'cd-configuration-details',
7 templateUrl: './configuration-details.component.html',
8 styleUrls: ['./configuration-details.component.scss']
10 export class ConfigurationDetailsComponent implements OnChanges {
12 selection: CdTableSelection;
18 if (this.selection.hasSelection) {
19 this.selectedItem = this.selection.first();