From 792ebb7c4dc3b70bd0c0fde9a994ac1d738be8be Mon Sep 17 00:00:00 2001 From: Allen McCabe Date: Mon, 16 Sep 2019 14:46:51 -0700 Subject: [PATCH] Fix daterange bug From issue /zofe/rapyd-laravel/issues/407 --- src/DataForm/Field/Daterange.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataForm/Field/Daterange.php b/src/DataForm/Field/Daterange.php index 08c0de36..4d371f07 100644 --- a/src/DataForm/Field/Daterange.php +++ b/src/DataForm/Field/Daterange.php @@ -43,7 +43,7 @@ public function build() $output = ""; unset($this->attributes['type']); - if (parent::build() === false) return; + if (Field::build() === false) return; switch ($this->status) {