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
Branches bugfix/EDELIVERY-13955-redesing-document-editor-ui
No related tags found
No related merge requests found
Pipeline #217521 failed
......@@ -35,13 +35,13 @@
<mat-label>{{ "certificate.panel.label.valid.from" | translate }}</mat-label>
<input matInput
placeholder="{{ 'certificate.panel.placeholder.valid.from' | translate }}"
[value]="getCertificateValidFromFormattedDate"
[value]="certificateValidFromFormattedDate"
readonly>
</mat-form-field>
<mat-form-field style="flex-grow: 1">
<mat-label>{{ "certificate.panel.label.valid.to" | translate }}</mat-label>
<input matInput placeholder="{{ 'certificate.panel.placeholder.valid.to' | translate }}"
[value]="getCertificateValidToFormattedDate"
[value]="certificateValidToFormattedDate"
readonly>
</mat-form-field>
</div>
......
......@@ -29,7 +29,7 @@ export class CertificatePanelComponent {
get certificateValidFromFormattedDate(): string {
return this.formatDate(this._certificate?.validFrom);
}
get getCertificateValidToFormattedDate(): string {
get certificateValidToFormattedDate(): string {
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