-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1548 from musicEnfanthen/feature/corrections
feat(edition): add corrections to source descriptions
- Loading branch information
Showing
19 changed files
with
909 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
.../edition-detail/edition-report/source-description/source-description-corrections/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './source-description-corrections.component'; |
25 changes: 25 additions & 0 deletions
25
...-description/source-description-corrections/source-description-corrections.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div class="awg-source-description-corrections"> | ||
<p class="no-para"><span class="smallcaps">Korrekturen:</span></p> | ||
@for (correction of corrections; track correction.id) { | ||
<details class="half-para awg-source-description-correction-details" [id]="correction.id"> | ||
<summary | ||
class="half-para awg-source-description-correction-summary" | ||
[compile-html]="correction.label + ':'" | ||
[compile-html-ref]="ref"></summary> | ||
@for (description of correction.description; track description) { | ||
<p | ||
class="awg-source-description-correction-desc" | ||
[compile-html]="description" | ||
[compile-html-ref]="ref"></p> | ||
} | ||
<awg-edition-tka-table | ||
[textcriticalComments]="correction.comments" | ||
[isCorrections]="true" | ||
[isRowTable]="correction.rowtable" | ||
(navigateToReportFragmentRequest)="navigateToReportFragment($event)" | ||
(openModalRequest)="openModal($event)" | ||
(selectSvgSheetRequest)="selectSvgSheet($event)"> | ||
</awg-edition-tka-table> | ||
</details> | ||
} | ||
</div> |
Empty file.
Oops, something went wrong.