Skip to content

Commit

Permalink
fix: fix imports in ui files
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Apr 7, 2019
1 parent ac7b89f commit 042c4a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions kb-cd-ui/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnInit } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { lowerCase, forEach, isString } from 'lodash';
import { Component, OnInit } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
import { forEach, isString, lowerCase } from 'lodash';

interface KbUser {
displayName: string;
Expand Down
6 changes: 3 additions & 3 deletions kb-cd-ui/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { AnsiPipe } from './ansi.pipe';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { AnsiPipe } from './ansi.pipe';

@NgModule({
declarations: [
Expand Down

0 comments on commit 042c4a0

Please sign in to comment.