diff --git a/server/templates/patch.html.jinja2 b/server/templates/patch.html.jinja2 index bd4e707..b916ed6 100644 --- a/server/templates/patch.html.jinja2 +++ b/server/templates/patch.html.jinja2 @@ -26,6 +26,9 @@ } } + {% endblock %} {% block content %} @@ -218,7 +221,7 @@ fileContentToggle: false, matching: 'lines', maxLineSizeInBlockForComparison: 80, - outputFormat: 'side-by-side', + outputFormat: isMobile ? 'line-by-line' : 'side-by-side', synchronisedScroll: true, renderNothingWhenEmpty: false, }; @@ -240,7 +243,7 @@ maxLineSizeInBlockForComparison: 80, fileContentToggle: false, matching: 'words', - outputFormat: 'side-by-side', + outputFormat: isMobile ? 'line-by-line' : 'side-by-side', synchronisedScroll: true, renderNothingWhenEmpty: false, };