From 3eb550d297e694dbfe9a202b043845c924ccdf3b Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 12 Feb 2020 10:45:48 +0000 Subject: [PATCH] Remove empty version of show more MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We’re not using it now that tables on the dashboard have borders between the rows. --- app/templates/components/show-more.html | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/app/templates/components/show-more.html b/app/templates/components/show-more.html index 930a62113..e72f6ef80 100644 --- a/app/templates/components/show-more.html +++ b/app/templates/components/show-more.html @@ -1,10 +1,6 @@ -{% macro show_more(url=None, label=None, with_border=True) %} - {% if url and label %} - {{ label }} - {% else %} - - {% endif %} +{% macro show_more(url, label, with_border=True) %} + {{ label }} {% endmacro %}