Merge pull request #4635 from MaximilianKrambach/commentExport

make comment exportable if readable
This commit is contained in:
Emanuel Schütze 2019-04-26 21:49:01 +02:00 committed by GitHub
commit 0675bdcf46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
<div class="text-warning" *ngFor="let section of sections">
<os-meta-text-block *ngIf="sectionVisible(section)" [showActionRow]="canEditSection(section)" icon="comment">
<os-meta-text-block
*ngIf="sectionVisible(section)"
[showActionRow]="canEditSection(section) || comments[section.id].comment"
icon="comment"
>
<ng-container class="meta-text-block-title">
<span>{{ section.getTitle() }}</span>
</ng-container>
@ -21,7 +25,7 @@
<ng-container class="meta-text-block-action-row">
<button
mat-icon-button
*ngIf="!isCommentEdited(section)"
*ngIf="!isCommentEdited(section) && canEditSection(section)"
(click)="editComment(section)"
matTooltip="{{ 'Edit' | translate }}"
>
@ -29,7 +33,7 @@
</button>
<button
mat-icon-button
*ngIf="!isEditMode && comments[section.id]?.comment"
*ngIf="!commentForms[section.id] && comments[section.id]?.comment"
(click)="pdfExportSection(section)"
matTooltip="{{ 'Export comment' | translate }}"
>