Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joshfischer1108 committed Oct 6, 2023
1 parent a6c574e commit ccbb90b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ import { TenantOverviewMetricService } from '../../../../services/tenant-overvie
})
export class SystemOverviewComponent implements DynamicContentViewItem {
@Input() data: any;

}
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ <h2>New users over the last 24 hours</h2>
</div>

<div class="main-container">
<div id="pie" style="width: 40%; height: 600px"></div>
<div id="pie" style="width: 40%; height: 600px"></div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ import { AggregateUsersConfigService } from '../../../../services/aggregate-user
export class TenantOverviewComponent implements DynamicContentViewItem, OnInit {
readonly daysToSubtract = environment.tenantMetricDaysToGoBack;
@Input() data: any;
constructor(private overviewMetricService: TenantOverviewMetricService, private aggregateConfigService: AggregateUsersConfigService) {}
constructor(
private overviewMetricService: TenantOverviewMetricService,
private aggregateConfigService: AggregateUsersConfigService
) {}

ngOnInit(): void {
let pieChart = echarts.init(document.getElementById('pie'), {
Expand All @@ -35,5 +38,4 @@ export class TenantOverviewComponent implements DynamicContentViewItem, OnInit {
pieChart.setOption(this.aggregateConfigService.get(data));
});
}

}

0 comments on commit ccbb90b

Please sign in to comment.