From 5b314dc6e0942bbec5be0f3417efd62685123a41 Mon Sep 17 00:00:00 2001 From: seshukm Date: Mon, 24 Sep 2018 16:52:18 +0800 Subject: Fix header info of menu-item Change-Id: Icc2bca4c1afb07d037c521e88b18eb6f633283d0 Issue-ID: SDC-1770 Signed-off-by: seshukm --- .../app/ng2/components/ui/menu/menu-item.component.ts | 6 +----- .../app/ng2/components/ui/menu/menu-list.component.ts | 6 +----- .../src/app/ng2/components/ui/menu/menu-list.module.ts | 16 ++++++++++++++++ 3 files changed, 18 insertions(+), 10 deletions(-) (limited to 'catalog-ui') diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts index 8b2006634e..3820573e58 100644 --- a/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts +++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts @@ -1,9 +1,5 @@ /*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -15,9 +11,9 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * ============LICENSE_END========================================================= */ + import { Component, Input, Output, EventEmitter } from '@angular/core'; @Component({ diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts index 290c8d06af..939599f0bc 100644 --- a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts +++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts @@ -1,9 +1,5 @@ /*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. - * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -15,9 +11,9 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * ============LICENSE_END========================================================= */ + import { Component, Input, ContentChildren, SimpleChanges, QueryList } from '@angular/core'; import { MenuItemComponent } from "./menu-item.component"; import { Point } from "app/models"; diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts index fdbbf59f48..9a2d57acaa 100644 --- a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts +++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts @@ -1,3 +1,19 @@ +/*- + * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + import { NgModule } from "@angular/core"; import { CommonModule } from '@angular/common'; import { MenuListComponent } from "./menu-list.component"; -- cgit 1.2.3-korg