Merge branch 'MDL-87456-500' of https://github.com/lucaboesch/moodle into MOODLE_500_STABLE

This commit is contained in:
Huong Nguyen
2026-02-24 09:50:13 +07:00
+7 -1
View File
@@ -321,7 +321,13 @@ class mod_workshop_renderer extends plugin_renderer_base {
} else {
$icon = new pix_icon('i/marker', get_string('switchphase'.$phasecode, 'mod_workshop'));
}
$actions .= $this->output->action_icon($action->url, $icon, null, null, true);
$actions .= $this->output->action_icon(
$action->url,
$icon,
null,
['class' => 'action-icon ms-0 ps-0'],
true
);
}
}
}