forked from hazza/dspace-angular
ESLint: fix indentation
This commit is contained in:
@@ -25,7 +25,7 @@ import { RequestEntry } from './request-entry.model';
|
||||
@Injectable()
|
||||
export class RequestEffects {
|
||||
|
||||
execute = createEffect(() => this.actions$.pipe(
|
||||
execute = createEffect(() => this.actions$.pipe(
|
||||
ofType(RequestActionTypes.EXECUTE),
|
||||
mergeMap((action: RequestExecuteAction) => {
|
||||
return this.requestService.getByUUID(action.payload).pipe(
|
||||
@@ -64,7 +64,7 @@ export class RequestEffects {
|
||||
* This assumes that the server cached everything a negligible
|
||||
* time ago, and will likely need to be revisited later
|
||||
*/
|
||||
fixTimestampsOnRehydrate = createEffect(() => this.actions$
|
||||
fixTimestampsOnRehydrate = createEffect(() => this.actions$
|
||||
.pipe(ofType(StoreActionTypes.REHYDRATE),
|
||||
map(() => new ResetResponseTimestampsAction(new Date().getTime()))
|
||||
));
|
||||
|
Reference in New Issue
Block a user