From ccbb90ba53de986a81c875c5d59174a0cfa73fb2 Mon Sep 17 00:00:00 2001 From: Josh Fischer Date: Fri, 6 Oct 2023 14:14:37 -0500 Subject: [PATCH] lint --- .../content/system-overview/system-overview.component.ts | 1 - .../content/tenant-overview/tenant-overview.component.html | 2 +- .../content/tenant-overview/tenant-overview.component.ts | 6 ++++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/projects/iridium-ui/src/app/components/dashboard/content/system-overview/system-overview.component.ts b/projects/iridium-ui/src/app/components/dashboard/content/system-overview/system-overview.component.ts index 4b6a722..997ed13 100644 --- a/projects/iridium-ui/src/app/components/dashboard/content/system-overview/system-overview.component.ts +++ b/projects/iridium-ui/src/app/components/dashboard/content/system-overview/system-overview.component.ts @@ -10,5 +10,4 @@ import { TenantOverviewMetricService } from '../../../../services/tenant-overvie }) export class SystemOverviewComponent implements DynamicContentViewItem { @Input() data: any; - } diff --git a/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.html b/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.html index c572e3a..5bd7c9a 100644 --- a/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.html +++ b/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.html @@ -5,5 +5,5 @@

New users over the last 24 hours

-
+
diff --git a/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.ts b/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.ts index 50db2b4..00abd9f 100644 --- a/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.ts +++ b/projects/iridium-ui/src/app/components/dashboard/content/tenant-overview/tenant-overview.component.ts @@ -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'), { @@ -35,5 +38,4 @@ export class TenantOverviewComponent implements DynamicContentViewItem, OnInit { pieChart.setOption(this.aggregateConfigService.get(data)); }); } - }