File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,11 @@ public String getIndentedReadme() {
203
203
return readme .replaceAll ("\n " , "\n " ).trim ();
204
204
}
205
205
206
+ public String getIndentedLastUpdate () {
207
+ String lastUpdateBody = getLastUpdate ().body ();
208
+ return lastUpdateBody .replaceAll ("\n " , "\n " ).trim ();
209
+ }
210
+
206
211
public Status getStatus () {
207
212
if (statusUpdates .isEmpty ()) {
208
213
return Status .INACTIVE ;
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ working-groups:
10
10
last-activity: {board.getLastActivityDate()}
11
11
{#if board.getLastUpdate() && board.getLastUpdate().body.trim()}
12
12
last-update: |
13
- {board.getLastUpdate ().body.trim() }
13
+ {board.getIndentedLastUpdate ().raw }
14
14
{/if}
15
15
{/for}
You can’t perform that action at this time.
0 commit comments