We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa00d3 commit 5c1b752Copy full SHA for 5c1b752
core/src/main/java/org/openapitools/openapidiff/core/output/HtmlRender.java
@@ -571,6 +571,13 @@ private LiTag li_changedParam(ChangedParameter changeParam) {
571
}
572
573
private UlTag ul_operation_id(ChangedOperationId changedOperationId) {
574
- return ul().withClass("change").with(li().withText("Changed " + changedOperationId.getLeft() + " to " + changedOperationId.getRight()));
+ return ul().withClass("change").with(
575
+ li().withText(
576
+ "Changed " +
577
+ Optional.ofNullable(changedOperationId.getLeft()).orElse("") +
578
+ " to " +
579
+ Optional.ofNullable(changedOperationId.getRight()).orElse("")
580
+ )
581
+ );
582
583
0 commit comments