Skip to content

Commit

Permalink
MDL-82451 course: Switch hide/show icons for section action menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Amaia Anabitarte committed Jul 16, 2024
1 parent 4197e50 commit 611034d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public function section_control_items() {
$url->param('hide', $section->section);
$controls['visiblity'] = [
'url' => $url,
'icon' => 'i/hide',
'icon' => 'i/show',
'name' => $strhidefromothers,
'pixattr' => ['class' => ''],
'attr' => [
Expand All @@ -240,7 +240,7 @@ public function section_control_items() {
$url->param('show', $section->section);
$controls['visiblity'] = [
'url' => $url,
'icon' => 'i/show',
'icon' => 'i/hide',
'name' => $strshowfromothers,
'pixattr' => ['class' => ''],
'attr' => [
Expand Down

0 comments on commit 611034d

Please sign in to comment.