From 3d144b3afc9281ee1684222cde0a82bb632b5328 Mon Sep 17 00:00:00 2001 From: Paul Clarke Date: Tue, 20 Sep 2016 17:27:49 +1200 Subject: [PATCH] Add spacing below filter action --- code/Report.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/Report.php b/code/Report.php index e7fb3ae3..36fa1dde 100644 --- a/code/Report.php +++ b/code/Report.php @@ -298,7 +298,10 @@ class Report extends ViewableData } // Add a search button - $fields->push(new FormAction('updatereport', _t('GridField.Filter'))); + $formAction = new FormAction('updatereport', _t('GridField.Filter')); + $formAction->addExtraClass("m-b-2"); + + $fields->push($formAction); } $fields->push($this->getReportField());