From f9db92cd57233a9b63e5604641335e71b549abc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Fri, 20 Apr 2018 15:54:34 +0200 Subject: [PATCH] Fix various coding-style violations and random imports --- src/app/dashboard/dashboard.component.html | 2 +- src/app/dashboard/dashboard.component.scss | 2 +- src/app/ide/ide.component.ts | 1 - src/assets/scss/mixins/_layout.scss | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/dashboard/dashboard.component.html b/src/app/dashboard/dashboard.component.html index 8e54ac2..677463a 100755 --- a/src/app/dashboard/dashboard.component.html +++ b/src/app/dashboard/dashboard.component.html @@ -14,7 +14,7 @@
- +
diff --git a/src/app/dashboard/dashboard.component.scss b/src/app/dashboard/dashboard.component.scss index 73864fb..4fe625c 100755 --- a/src/app/dashboard/dashboard.component.scss +++ b/src/app/dashboard/dashboard.component.scss @@ -92,7 +92,7 @@ @include position-grid-items(map_get($layouts, 'terminal-ide-web'),'.tfw-'); } -.terminal-web{ +.terminal-web { @include set-tfw-web('terminal-web'); @include position-grid-items(map_get($layouts,'terminal-web'),'.tfw-'); } diff --git a/src/app/ide/ide.component.ts b/src/app/ide/ide.component.ts index ac06802..5cd0f88 100644 --- a/src/app/ide/ide.component.ts +++ b/src/app/ide/ide.component.ts @@ -17,7 +17,6 @@ import { WebSocketService } from '../services/websocket.service'; import { ProcessManagerService } from '../services/processmanager.service'; import { DeploymentNotificationService } from '../services/deployment-notification.service'; import { config } from '../config'; -import { element } from 'protractor'; const modelist = brace.acequire('ace/ext/modelist'); diff --git a/src/assets/scss/mixins/_layout.scss b/src/assets/scss/mixins/_layout.scss index f8f1901..9a9e604 100644 --- a/src/assets/scss/mixins/_layout.scss +++ b/src/assets/scss/mixins/_layout.scss @@ -104,7 +104,7 @@ $layouts: ( @include hide-component(); } -@function get-layout($layouts-key){ +@function get-layout($layouts-key) { @return map_get($layouts, $layouts-key); }