Skip to content

Commit 58bfdc4

Browse files
committed
fix: #257 fix button styles
1 parent 62b39e0 commit 58bfdc4

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

src/app/modules/activities-management/store/activity-management.effects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY, UNEXPECTED_ERROR } from '../../shared/messages';
1+
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY } from '../../shared/messages';
22
import { Injectable } from '@angular/core';
33
import { Actions, Effect, ofType } from '@ngrx/effects';
44
import { Action } from '@ngrx/store';

src/app/modules/customer-management/components/projects-type/store/project-type.effects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY, UNEXPECTED_ERROR } from '../../../../shared/messages';
1+
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY } from '../../../../shared/messages';
22
import { Injectable } from '@angular/core';
33
import { Actions, Effect, ofType } from '@ngrx/effects';
44
import { Action } from '@ngrx/store';

src/app/modules/customer-management/components/projects/components/store/project.effects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY, UNEXPECTED_ERROR } from '../../../../../shared/messages';
1+
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY } from '../../../../../shared/messages';
22
import { Injectable } from '@angular/core';
33
import { of, Observable } from 'rxjs';
44
import { catchError, map, mergeMap } from 'rxjs/operators';

src/app/modules/customer-management/store/customer-management.effects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY, UNEXPECTED_ERROR } from '../../shared/messages';
1+
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY } from '../../shared/messages';
22
import { Injectable } from '@angular/core';
33
import { Actions, Effect, ofType } from '@ngrx/effects';
44
import { Action } from '@ngrx/store';

src/app/modules/time-clock/components/project-list-hover/project-list-hover.component.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ describe('ProjectListHoverComponent', () => {
6666

6767
it('dispatchs a UpdateEntry action when activeEntry is not null', () => {
6868
const entry = { id: '123', project_id: 'p1', start_date: new Date().toISOString() };
69-
const updatedEntry = { id: '123', project_id: 'p-1' };
7069
component.activeEntry = entry;
7170
spyOn(store, 'dispatch');
7271

src/app/modules/time-clock/store/entry.effects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY, UNEXPECTED_ERROR } from './../../shared/messages';
1+
import { INFO_SAVED_SUCCESSFULLY, INFO_DELETE_SUCCESSFULLY } from './../../shared/messages';
22
import { Injectable } from '@angular/core';
33
import { ofType, Actions, Effect } from '@ngrx/effects';
44
import { Action } from '@ngrx/store';

0 commit comments

Comments
 (0)