From 308921fcc1fc707d4faffc5378c5618a64b83244 Mon Sep 17 00:00:00 2001 From: Andy Lulham Date: Thu, 24 Oct 2024 11:14:44 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20don=E2=80=99t=20show=20banner=20if=20%?= =?UTF-8?q?=20rounds=20to=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- output/_layouts/default.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/output/_layouts/default.html b/output/_layouts/default.html index 9c28d5083..eea6bf65d 100644 --- a/output/_layouts/default.html +++ b/output/_layouts/default.html @@ -50,9 +50,11 @@ {% elsif site.data.meta.total_fetched < site.data.meta.total_tweets %} {% assign perc_unfetched = site.data.meta.total_fetched | times: -100 | divided_by: site.data.meta.total_tweets | plus:100 %} + {% if perc_unfetched > 0 %} + {% endif %} {% endif %}