From d7fdf876eac2e307e773375f3713fc00b69fcd97 Mon Sep 17 00:00:00 2001 From: Benaissa BENARBIA <ben.benarbia@gmail.com> Date: Thu, 9 Sep 2021 14:02:14 +0200 Subject: [PATCH] remove unused import --- .../context-information-tab.component.ts | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/ui/ui-frontend/projects/referential/src/app/context/context-preview/context-information-tab/context-information-tab.component.ts b/ui/ui-frontend/projects/referential/src/app/context/context-preview/context-information-tab/context-information-tab.component.ts index 341ea61ca..105e65a58 100644 --- a/ui/ui-frontend/projects/referential/src/app/context/context-preview/context-information-tab/context-information-tab.component.ts +++ b/ui/ui-frontend/projects/referential/src/app/context/context-preview/context-information-tab/context-information-tab.component.ts @@ -34,18 +34,17 @@ * The fact that you are presently reading this means that you have had * knowledge of the CeCILL-C license and that you accept its terms. */ -import {Component, EventEmitter, Input, Output} from '@angular/core'; -import {FormBuilder, FormControl, FormGroup, Validators} from '@angular/forms'; -import {Context} from 'projects/vitamui-library/src/public-api'; -import {Observable, of} from 'rxjs'; -import {catchError, filter, map, switchMap} from 'rxjs/operators'; -import {diff, Option} from 'ui-frontend-common'; -import {extend, isEmpty} from 'underscore'; - -import {ContextService} from '../../context.service'; - -import {SecurityProfileService} from '../../../security-profile/security-profile.service'; -import { formatDate } from '@angular/common'; +import { Component, EventEmitter, Input, Output } from '@angular/core'; +import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; +import { Context } from 'projects/vitamui-library/src/public-api'; +import { Observable, of } from 'rxjs'; +import { catchError, filter, map, switchMap } from 'rxjs/operators'; +import { diff, Option } from 'ui-frontend-common'; +import { extend, isEmpty } from 'underscore'; +import { SecurityProfileService } from '../../../security-profile/security-profile.service'; +import { ContextService } from '../../context.service'; + + @Component({ selector: 'app-context-information-tab', -- GitLab