From 46c6cd1d7e5fbb5c23a8e80531fa9a27e295b4fa Mon Sep 17 00:00:00 2001 From: piotrpekala7 <31202938+piotrpekala7@users.noreply.github.com> Date: Mon, 13 Jul 2020 16:52:46 +0200 Subject: [PATCH] Update link.service.ts --- src/app/services/link.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/services/link.service.ts b/src/app/services/link.service.ts index b2cdc22f..26a82de0 100644 --- a/src/app/services/link.service.ts +++ b/src/app/services/link.service.ts @@ -55,8 +55,8 @@ export class LinkService { } updateLink(server: Server, link: Link) { - link.x = Math.round(link.x); - link.y = Math.round(link.y); + // link.x = Math.round(link.x); + // link.y = Math.round(link.y); return this.httpServer.put(server, `/projects/${link.project_id}/links/${link.link_id}`, link); }