Detect if the parent motion was deleted
Fixes an error where the motion detail page would not open if the parent motion to an amendment was deleted. Show a warning if the parent motion to an amendment is missing
This commit is contained in:
parent
6e2e1ebe7a
commit
e268903536
@ -878,9 +878,10 @@
|
|||||||
<!-- If the array exists, we do not have an error -->
|
<!-- If the array exists, we do not have an error -->
|
||||||
<div *ngIf="motion.diffLines">
|
<div *ngIf="motion.diffLines">
|
||||||
<div class="alert alert-info" *ngIf="motion.diffLines.length === 0">
|
<div class="alert alert-info" *ngIf="motion.diffLines.length === 0">
|
||||||
<span>{{ 'No changes at the text.' | translate }}</span>
|
<i *ngIf="motion.parent">{{ 'No changes at the text.' | translate }}</i>
|
||||||
|
<i *ngIf="!motion.parent">{{ 'The parent motion was deleted' | translate }}</i>
|
||||||
</div>
|
</div>
|
||||||
<ng-container *ngIf="!isRecoMode(ChangeRecoMode.Diff) && !isFinalEdit">
|
<ng-container *ngIf="motion.parent && !isRecoMode(ChangeRecoMode.Diff) && !isFinalEdit">
|
||||||
<div
|
<div
|
||||||
*ngFor="let paragraph of getAmendmentParagraphs()"
|
*ngFor="let paragraph of getAmendmentParagraphs()"
|
||||||
class="motion-text motion-text-diff amendment-view"
|
class="motion-text motion-text-diff amendment-view"
|
||||||
|
Loading…
Reference in New Issue
Block a user