From 9bd7ae95159a8e5b18cdb0b7078d32e993de9fb5 Mon Sep 17 00:00:00 2001 From: Rafael de Camargo Date: Mon, 14 Oct 2019 09:43:57 -0300 Subject: [PATCH] Fix SubtaskRestrictionController modal misbehaviour on link When the icon was clicked, the modal wasn't shown. Instead, its html content was open as the whole page. --- app/Helper/SubtaskHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helper/SubtaskHelper.php b/app/Helper/SubtaskHelper.php index 19ffa86dc..8ff4bc48d 100644 --- a/app/Helper/SubtaskHelper.php +++ b/app/Helper/SubtaskHelper.php @@ -32,7 +32,7 @@ class SubtaskHelper extends Base public function renderTitle(array $subtask) { if ($subtask['status'] == 0) { - $html = ''; + $html = ''; } elseif ($subtask['status'] == 1) { $html = ''; } else {