Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions working-groups/main.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,11 @@ public String getIndentedReadme() {
return readme.replaceAll("\n", "\n ").trim();
}

public String getIndentedLastUpdate() {
String lastUpdateBody = getLastUpdate().body();
return lastUpdateBody.replaceAll("\n", "\n ").trim();
}

public Status getStatus() {
if (statusUpdates.isEmpty()) {
return Status.INACTIVE;
Expand Down
2 changes: 1 addition & 1 deletion working-groups/templates/wg.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ working-groups:
last-activity: {board.getLastActivityDate()}
{#if board.getLastUpdate() && board.getLastUpdate().body.trim()}
last-update: |
{board.getLastUpdate().body.trim()}
{board.getIndentedLastUpdate().raw}
{/if}
{/for}