From 58a46c81f7b2d085006ac578d11bde40e1ca3d17 Mon Sep 17 00:00:00 2001 From: Tobias Speicher Date: Sun, 12 Jun 2022 12:38:06 +0200 Subject: [PATCH] Fix blob column downloads Since the change in 0843ba0 new lines were added to the start and end of the output even if the header or footer were empty. Signed-off-by: Tobias Speicher --- templates/base.twig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/templates/base.twig b/templates/base.twig index 7f48300792..279c5990be 100644 --- a/templates/base.twig +++ b/templates/base.twig @@ -1,3 +1 @@ -{{ header|raw }} -{{ content|raw }} -{{ footer|raw }} +{{- header|raw -}}{{- content|raw -}}{{- footer|raw -}} \ No newline at end of file