Spaces:
Running
Running
Update flare-ui/src/app/dialogs/version-edit-dialog/version-edit-dialog.component.html
Browse files
flare-ui/src/app/dialogs/version-edit-dialog/version-edit-dialog.component.html
CHANGED
@@ -47,11 +47,9 @@
|
|
47 |
<mat-chip-option>Version ID: {{ versionForm.get('id')?.value }}</mat-chip-option>
|
48 |
<mat-chip-option *ngIf="selectedVersion.published" selected>Published</mat-chip-option>
|
49 |
<mat-chip-option *ngIf="!selectedVersion.published">Draft</mat-chip-option>
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
</mat-chip-option>
|
54 |
-
}
|
55 |
</mat-chip-listbox>
|
56 |
</div>
|
57 |
|
|
|
47 |
<mat-chip-option>Version ID: {{ versionForm.get('id')?.value }}</mat-chip-option>
|
48 |
<mat-chip-option *ngIf="selectedVersion.published" selected>Published</mat-chip-option>
|
49 |
<mat-chip-option *ngIf="!selectedVersion.published">Draft</mat-chip-option>
|
50 |
+
<mat-chip-option *ngIf="selectedVersion.last_update_date">
|
51 |
+
Last updated: {{ selectedVersion.last_update_date | date:'short' }}
|
52 |
+
</mat-chip-option>
|
|
|
|
|
53 |
</mat-chip-listbox>
|
54 |
</div>
|
55 |
|