Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,16 @@ export class MotionViewComponent extends BaseMeetingComponent implements OnInit,
* the regular amendment changes are shown in the "original" view.
*/
return ChangeRecoMode.Original;
} else if (
mode === ChangeRecoMode.Original &&
this.hasChangeRecommendations &&
this.motion?.isParagraphBasedAmendment()
) {
/**
* Paragraph-based amendments with change recommendations should display
* the Diff view.
*/
return ChangeRecoMode.Diff;
}
return mode;
}
Expand Down
Loading