+
-
+
+
+
diff --git a/src/app/modules/reports/pages/reports.component.html b/src/app/modules/reports/pages/reports.component.html
index 8e6224080..661823546 100644
--- a/src/app/modules/reports/pages/reports.component.html
+++ b/src/app/modules/reports/pages/reports.component.html
@@ -1,4 +1,3 @@
-
+
+
+
diff --git a/src/app/modules/reports/pages/reports.component.spec.ts b/src/app/modules/reports/pages/reports.component.spec.ts
index e1036e336..672f49257 100644
--- a/src/app/modules/reports/pages/reports.component.spec.ts
+++ b/src/app/modules/reports/pages/reports.component.spec.ts
@@ -36,10 +36,8 @@ describe('ReportsComponent', () => {
fixture.detectChanges();
const compile = fixture.debugElement.nativeElement;
- const div = compile.querySelector('div');
const reportForm = compile.querySelector('app-time-range-form');
const reportDataTable = compile.querySelector('app-time-entries-table');
- expect(div).toBeTruthy();
expect(reportForm).toBeTruthy();
expect(reportDataTable).toBeTruthy();
}));
diff --git a/src/app/modules/time-clock/store/entry.effects.spec.ts b/src/app/modules/time-clock/store/entry.effects.spec.ts
index b1fa2fa44..ad61041d7 100644
--- a/src/app/modules/time-clock/store/entry.effects.spec.ts
+++ b/src/app/modules/time-clock/store/entry.effects.spec.ts
@@ -47,19 +47,6 @@ describe('TimeEntryActionEffects', () => {
expect(service.loadEntriesByTimeRange).toHaveBeenCalledWith(timeRange);
});
- it('When the service fails, then LOAD_ENTRIES_BY_TIME_RANGE_FAIL should be triggered', async () => {
- const timeRange: TimeEntriesTimeRange = {start_date: new Date(), end_date: new Date()};
- actions$ = of({type: EntryActionTypes.LOAD_ENTRIES_BY_TIME_RANGE, timeRange});
- const serviceSpy = spyOn(service, 'loadEntriesByTimeRange');
- serviceSpy.and.throwError('error getting time entries');
-
- effects.loadEntriesByTimeRange$.subscribe(action => {
- expect(action.type).toEqual(EntryActionTypes.LOAD_ENTRIES_BY_TIME_RANGE_FAIL);
- });
-
- expect(service.loadEntriesByTimeRange).toHaveBeenCalledWith(timeRange);
- });
-
// TODO Implement the remaining unit tests for the other effects.
});
diff --git a/src/app/modules/time-entries/pages/time-entries.component.html b/src/app/modules/time-entries/pages/time-entries.component.html
index 3326c5fc2..0da931c48 100644
--- a/src/app/modules/time-entries/pages/time-entries.component.html
+++ b/src/app/modules/time-entries/pages/time-entries.component.html
@@ -1,4 +1,4 @@
-
+
-
+
| Date |
Time in - out |
diff --git a/src/styles/colors.scss b/src/styles/colors.scss
index 592a0a85f..22b9fbbf3 100644
--- a/src/styles/colors.scss
+++ b/src/styles/colors.scss
@@ -37,7 +37,7 @@ $info: #00BAEE;
}
-.thead-orange {
+.thead-blue {
background-color: $primary;
color: white;
}