From 9581b9485fc2f1eea0fadd01410af4e1b37729b2 Mon Sep 17 00:00:00 2001 From: deaflynx Date: Wed, 4 Nov 2020 09:32:34 +0200 Subject: [PATCH] Code review. event.service minor code beautify --- ui-ngx/src/app/core/http/event.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-ngx/src/app/core/http/event.service.ts b/ui-ngx/src/app/core/http/event.service.ts index 62a8a01780..fe5c064cb5 100644 --- a/ui-ngx/src/app/core/http/event.service.ts +++ b/ui-ngx/src/app/core/http/event.service.ts @@ -39,7 +39,8 @@ export class EventService { defaultHttpOptionsFromConfig(config)); } - public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink, config?: RequestConfig): Observable> { + public getEdgeEvents(entityId: EntityId, pageLink: TimePageLink, + config?: RequestConfig): Observable> { return this.http.get>(`/api/edge/${entityId.id}/events` + `${pageLink.toQuery()}`, defaultHttpOptionsFromConfig(config)); }