File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/js/app/component/footer Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
< div class ="ps-3 footer ">
2
- © {{currentYear}} ⋅ {{companyName}} ⋅ Build-version: {{version}} ⋅ Build-timestamp: {{timestamp}} ⋅ Customer: {{customer}}
2
+ {{applicationName}} © {{currentYear}} ⋅ {{companyName}} ⋅ Build-version: {{version}} ⋅ Build-timestamp: {{timestamp}} ⋅ Customer: {{customer}}
3
3
</ div >
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export class FootnoteComponent implements OnInit {
16
16
timestamp : string | undefined ;
17
17
customer : string | undefined ;
18
18
currentYear = new Date ( ) . getFullYear ( ) ;
19
+ applicationName = 'angular-boilerplate'
19
20
companyName = 'hofi.org'
20
21
21
22
constructor ( private meta : Meta ) {
@@ -31,7 +32,7 @@ export class FootnoteComponent implements OnInit {
31
32
32
33
if ( ! FootnoteComponent . hasLogged && this . version !== undefined ) {
33
34
console . info (
34
- `© ${ this . currentYear } ⋅ ${ this . companyName } ⋅ Build-version: ${ this . version } ⋅ Build-timestamp: ${ this . timestamp } ⋅ Customer: ${ this . customer } `
35
+ `${ this . applicationName } © ${ this . currentYear } ⋅ ${ this . companyName } ⋅ Build-version: ${ this . version } ⋅ Build-timestamp: ${ this . timestamp } ⋅ Customer: ${ this . customer } `
35
36
) ;
36
37
FootnoteComponent . hasLogged = true ; // Set the flag to true after logging
37
38
}
You can’t perform that action at this time.
0 commit comments