clean up mock data and update device interface

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent aebcc495f9
commit f250425ef1
6 changed files with 5 additions and 21 deletions
@@ -1,5 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { SystemConfigService } from 'src/app/system-config.service';
import { Folder } from '../../folder'
import { cardElevation } from '../../style'
@Component({
@@ -10,6 +11,7 @@ import { cardElevation } from '../../style'
export class FolderChartComponent implements OnInit {
chartID: string = 'foldersChart';
elevation: string = cardElevation;
data: Folder[];
constructor(private systemConfigService: SystemConfigService) { }