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