Skip to content

Commit

Permalink
Merge pull request #1051 from Sanjaybhattwebkul/workflow-issue
Browse files Browse the repository at this point in the history
Issue #1032 fixed
  • Loading branch information
jitendra-webkul authored Aug 24, 2022
2 parents be0076d + 608e98b commit abbd4e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ public function __construct(DashboardHelper $dashboardHelper)
* @return \Illuminate\View\View
*/
public function index()
{$cards = $this->dashboardHelper->getCards();
{
$cards = $this->dashboardHelper->getCards();

if ($dateRange = request('date-range')) {
$dateRange = explode(",", $dateRange);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,8 @@ class="control"
'label': 'work',
'value': ''
}];
} else if (matchedAttribute[0]['type'] == 'text') {
this.action.value = '';
}
return matchedAttribute[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,8 @@
'label': 'work',
'value': ''
}];
} else if (matchedAttribute[0]['type'] == 'text') {
this.action.value = '';
}
return matchedAttribute[0];
Expand Down

0 comments on commit abbd4e4

Please sign in to comment.