Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
humanzz committed Feb 13, 2024
1 parent 444161b commit 1cc4280
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/aws-cdk-lib/aws-cloudwatch/lib/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,6 @@ export enum TableSummaryColumn {
export interface TableSummaryProps {
/**
* Summary columns
* @see TableSummary
*
* @default - No summary columns will be shown
*/
Expand All @@ -590,7 +589,6 @@ export interface TableSummaryProps {
* Thresholds for highlighting cells in TableWidget
*/
export class TableThreshold {

/**
* A threshold for highlighting and coloring cells above the specified value
*
Expand Down Expand Up @@ -752,11 +750,9 @@ export interface TableWidgetProps extends MetricWidgetProps {
*/
export class TableWidget extends ConcreteWidget {

private readonly props: TableWidgetProps;

private readonly metrics: IMetric[];

constructor(props: TableWidgetProps) {
constructor(private readonly props: TableWidgetProps) {
super(props.width || 6, props.height || 6);

this.props = props;
Expand Down

0 comments on commit 1cc4280

Please sign in to comment.