This commit is contained in:
balazs 2019-05-13 13:57:08 +02:00 committed by Kristóf Tóth
parent ab43fdd70f
commit b1b6ee5151
2 changed files with 13 additions and 12 deletions

View File

@ -65,4 +65,5 @@ import { MonacoEditorModule } from 'ngx-monaco-editor';
AppComponent
]
})
export class AppModule { }
export class AppModule {
}

View File

@ -1,17 +1,17 @@
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
// All Rights Reserved. See LICENSE file for details.
import {ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild} from '@angular/core';
import {DeploymentNotificationService} from '../services/deployment-notification.service';
import {Subscription} from 'rxjs';
import {WebSocketService} from '../services/websocket.service';
import {HideMessagesCommand, LayoutCommand, TerminalMenuItemCommand} from '../message-types/dashboard-commands';
import {config} from '../config';
import {ProcessLogService} from '../services/processlog.service';
import {LogMessage} from '../message-types/log-message';
import {CommandMessage} from '../message-types/command-message';
import {HttpClient} from '@angular/common/http';
import {delay, retryWhen, tap} from 'rxjs/operators';
import { ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { DeploymentNotificationService } from '../services/deployment-notification.service';
import { Subscription } from 'rxjs';
import { WebSocketService } from '../services/websocket.service';
import { HideMessagesCommand, LayoutCommand, TerminalMenuItemCommand } from '../message-types/dashboard-commands';
import { config } from '../config';
import { ProcessLogService } from '../services/processlog.service';
import { LogMessage } from '../message-types/log-message';
import { CommandMessage } from '../message-types/command-message';
import { HttpClient } from '@angular/common/http';
import { delay, retryWhen, tap } from 'rxjs/operators';
@Component({
selector: 'app-dashboard',