chg: [UI] Use asset loader for view_event_distribution_graph.ctp

pull/8321/head
Jakub Onderka 2022-05-02 10:19:50 +02:00
parent e1b90c8e14
commit 68ca1b8849
1 changed files with 9 additions and 6 deletions

View File

@ -22,9 +22,12 @@
</div>
</div>
</div>
<?php
echo $this->Html->script('Chart.min');
echo $this->Html->script('event-distribution-graph');
echo $this->Html->css('distribution-graph');
?>
<?= $this->element('genericElements/assetLoader', [
'js' => [
'Chart.min',
'event-distribution-graph',
],
'css' => [
'distribution-graph',
],
]);