Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit a7d49290 authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

[EDELIVERY-13955] PR updates

parent 97a5bc43
No related branches found
No related tags found
No related merge requests found
Pipeline #217521 failed
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
<mat-label>{{ "certificate.panel.label.valid.from" | translate }}</mat-label> <mat-label>{{ "certificate.panel.label.valid.from" | translate }}</mat-label>
<input matInput <input matInput
placeholder="{{ 'certificate.panel.placeholder.valid.from' | translate }}" placeholder="{{ 'certificate.panel.placeholder.valid.from' | translate }}"
[value]="getCertificateValidFromFormattedDate" [value]="certificateValidFromFormattedDate"
readonly> readonly>
</mat-form-field> </mat-form-field>
<mat-form-field style="flex-grow: 1"> <mat-form-field style="flex-grow: 1">
<mat-label>{{ "certificate.panel.label.valid.to" | translate }}</mat-label> <mat-label>{{ "certificate.panel.label.valid.to" | translate }}</mat-label>
<input matInput placeholder="{{ 'certificate.panel.placeholder.valid.to' | translate }}" <input matInput placeholder="{{ 'certificate.panel.placeholder.valid.to' | translate }}"
[value]="getCertificateValidToFormattedDate" [value]="certificateValidToFormattedDate"
readonly> readonly>
</mat-form-field> </mat-form-field>
</div> </div>
......
...@@ -29,7 +29,7 @@ export class CertificatePanelComponent { ...@@ -29,7 +29,7 @@ export class CertificatePanelComponent {
get certificateValidFromFormattedDate(): string { get certificateValidFromFormattedDate(): string {
return this.formatDate(this._certificate?.validFrom); return this.formatDate(this._certificate?.validFrom);
} }
get getCertificateValidToFormattedDate(): string { get certificateValidToFormattedDate(): string {
return this.formatDate(this._certificate?.validTo); return this.formatDate(this._certificate?.validTo);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment