Skip to content

Commit

Permalink
fix(portal-next): remove company name from footer (#9196) (#9218)
Browse files Browse the repository at this point in the history
(cherry picked from commit 28923d9)

Co-authored-by: illichso <[email protected]>
  • Loading branch information
mergify[bot] and illichso authored Sep 25, 2024
1 parent 3cbfdbe commit 1ad242b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!--
Copyright (C) 2024 The Gravitee team (http://gravitee.io)
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.
Expand All @@ -16,4 +16,4 @@
-->
<app-company-title [title]="title" />
<p>© 2024 {{ company }}. All rights reserved.</p>
<p>© {{ currentYear }}. All rights reserved.</p>
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ import { CompanyTitleComponent } from '../company-title/company-title.component'
export class FooterComponent {
@Input()
title: string = 'Developer Portal';
@Input()
company: string = 'Gravitee';

currentYear = new Date().getFullYear().toString();
}

0 comments on commit 1ad242b

Please sign in to comment.