diff --git a/src/components/HistoricalBuildingDataTable.vue b/src/components/HistoricalBuildingDataTable.vue
index 4f1e0bd1..87954ad4 100644
--- a/src/components/HistoricalBuildingDataTable.vue
+++ b/src/components/HistoricalBuildingDataTable.vue
@@ -6,13 +6,22 @@
Year
|
-
+ |
Floor Area sqft
|
-
+ |
Chicago Energy Rating
|
-
+ |
Energy Star Score
|
@@ -28,7 +37,10 @@
|
Natural Gas Use kBtu
|
-
+ |
District Steam Use kBtu
|
@@ -39,7 +51,7 @@
:key="benchmark.DataYear"
>
{{ benchmark.DataYear }} |
-
+ |
{{ benchmark.GrossFloorArea | optionalInt }}
|
@@ -87,7 +99,7 @@ import {IHistoricData} from '../common-functions.vue';
return parseInt(value).toLocaleString();
},
- }
+ },
})
export default class BuildingImage extends Vue {
@Prop({required: true}) historicBenchmarks!: Array;
@@ -112,10 +124,7 @@ export default class BuildingImage extends Vue {
}
created(): void {
- // const emptyColumns =
- console.log('historicBenchmarks', this.historicBenchmarks);
this.renderedColumns = this.getRenderedColumns();
- console.log('renderedColumns', this.renderedColumns);
}
}
|