templates: Make whitespace in [% %] consistent

This commit is contained in:
Janne Heß
2025-08-02 17:27:34 +02:00
committed by ahuston-0
parent 06c6bd1b7b
commit 4125de8208
9 changed files with 14 additions and 14 deletions

View File

@@ -33,7 +33,7 @@
[% IF tail %]
/* The server may give us a full log (e.g. if the log is in
S3). So extract the last lines. */
log_data = log_data.split("\n").slice(-[%tail%]).join("\n");
log_data = log_data.split("\n").slice(-[% tail %]).join("\n");
[% END %]
$("#contents").text(log_data);