This commit is contained in:
Huong Nguyen 2024-12-03 09:31:54 +07:00
commit 3ffaddc136
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A

View File

@ -1532,7 +1532,7 @@ class core_renderer extends renderer_base {
foreach ($items as $key => $string) {
$item = html_writer::start_tag('li', ['class' => 'r' . $row]);
if (!empty($icons[$key])) { // test if the content has an assigned icon
$item .= html_writer::tag('div', $icons[$key], ['class' => 'icon column c0']);
$item .= html_writer::tag('div', $icons[$key], ['class' => 'column c0 icon-size-3']);
}
$item .= html_writer::tag('div', $string, ['class' => 'column c1']);
$item .= html_writer::end_tag('li');