Skip to content

Commit

Permalink
fixes #159
Browse files Browse the repository at this point in the history
  • Loading branch information
schmunk42 committed Jul 28, 2016
1 parent 3105b01 commit 898ffc4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/views/default/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
$count[] = AuditEntry::find()->where(['between', 'created', date('Y-m-d 00:00:00', $date), date('Y-m-d 23:59:59', $date)])->count();
}
echo ChartJs::widget([
'type' => 'Bar',
'type' => 'bar',
'data' => [
'labels' => $days,
'datasets' => [
Expand Down
2 changes: 1 addition & 1 deletion src/views/default/panels/error/chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

echo ChartJs::widget([
'type' => 'Bar',
'type' => 'bar',
'data' => [
'labels' => $days,
'datasets' => [
Expand Down
2 changes: 1 addition & 1 deletion src/views/default/panels/javascript/chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

echo ChartJs::widget([
'type' => 'Bar',
'type' => 'bar',
'data' => [
'labels' => $days,
'datasets' => [
Expand Down
2 changes: 1 addition & 1 deletion src/views/default/panels/mail/chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

echo ChartJs::widget([
'type' => 'Bar',
'type' => 'bar',
'data' => [
'labels' => $days,
'datasets' => [
Expand Down
2 changes: 1 addition & 1 deletion src/views/default/panels/trail/chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}

echo ChartJs::widget([
'type' => 'Bar',
'type' => 'bar',
'data' => [
'labels' => $days,
'datasets' => [
Expand Down

0 comments on commit 898ffc4

Please sign in to comment.