[master | DONE | FIXED] Public logs: Fix link foe matomo webstats

This commit is contained in:
argirok 2024-02-14 16:49:08 +02:00
parent 96a9cd4090
commit cfcbae5ce1
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ import {LogService} from "../openaireLibrary/utils/log/log.service";
<ng-container *ngFor="let month of months ">
<ng-container *ngIf="show(year, month) ">
<li *ngIf=" !(year == today.getFullYear() && month == today.getMonth()+1)">
<a [href]="properties.logServiceUrl + 'webstats/' + year + '/' + month " target="_blank"> {{month}}/{{year}}</a>
<a [href]="properties.logServiceUrl + 'webstats/' + year + '/' + (month<10?'0'+month:month) " target="_blank"> {{month}}/{{year}}</a>
</li>
</ng-container>
</ng-container>