Nombre:
diff --git a/src/app/modules/admin/dashboards/project/project.component.ts b/src/app/modules/admin/dashboards/project/project.component.ts
index 9415341..ee450ab 100644
--- a/src/app/modules/admin/dashboards/project/project.component.ts
+++ b/src/app/modules/admin/dashboards/project/project.component.ts
@@ -14,7 +14,8 @@ import { FuseConfirmationService } from '@fuse/services/confirmation/confirmatio
@Component({
selector: 'project',
templateUrl: './project.component.html',
- encapsulation: ViewEncapsulation.None
+ encapsulation: ViewEncapsulation.None,
+
})
export class ProjectComponent implements OnInit, OnDestroy {
chartGithubIssues: ApexOptions = {};
@@ -47,6 +48,7 @@ export class ProjectComponent implements OnInit, OnDestroy {
searchInputControl: FormControl = new FormControl();
filteredEmployes: any;
stats: any;
+ isLoading: boolean;
/**
* Constructor
@@ -174,6 +176,7 @@ export class ProjectComponent implements OnInit, OnDestroy {
}
getAllStats() {
+ this.isLoading = true;
const { startDate, endDate } = this.getStartAndEndDate();
const queryParams = `?startDate=${startDate}&endDate=${endDate}`
this._projectService.getStats(queryParams).subscribe((res: any) => {