From d91089238d7c7bc7fb13062796f8eedd3d2f5c0e Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 21 Jul 2017 00:32:51 +0200 Subject: [PATCH] Change import order. --- src/accounts/accountForm.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounts/accountForm.component.ts b/src/accounts/accountForm.component.ts index 3cd7e8c..7948f1f 100644 --- a/src/accounts/accountForm.component.ts +++ b/src/accounts/accountForm.component.ts @@ -1,5 +1,5 @@ // vim: set tw=80 ts=2 sw=2 sts=2 : -import { Component, ViewChild, AfterViewChecked, Input, Output, EventEmitter } from '@angular/core'; +import { AfterViewChecked, Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'; import { NgForm } from '@angular/forms'; import { Logger } from '@nsalaun/ng-logger';