diff options
| author | Finn Schneider <schneider@data-quest.de> | 2026-01-06 13:34:55 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-01-06 14:34:55 +0100 |
| commit | 23d4aedd3ee2b8bcdbc468e2716a92c73f98d731 (patch) | |
| tree | 24fc09c1e3bc23ab835e7e584719659e7071c923 /app/controllers/course/topics.php | |
| parent | daea75e74aa0c256c4070d326fa6dec9e97aea31 (diff) | |
Resolve "Themenansicht: ActionMenu asDialog() Methode existiert nicht"
Closes #6143
Merge request studip/studip!4657
Diffstat (limited to 'app/controllers/course/topics.php')
| -rw-r--r-- | app/controllers/course/topics.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/controllers/course/topics.php b/app/controllers/course/topics.php index 026c2bf..3228372 100644 --- a/app/controllers/course/topics.php +++ b/app/controllers/course/topics.php @@ -334,8 +334,9 @@ class Course_TopicsController extends AuthenticatedController $actions->addLink( $this->editURL($topic), _('Bearbeiten'), - Icon::create('edit') - )->asDialog(); + Icon::create('edit'), + ['data-dialog' => ''] + ); $actions->addButton( 'delete', _('Löschen'), @@ -352,8 +353,9 @@ class Course_TopicsController extends AuthenticatedController ['issue_id' => $topic->id] ), _('Alle Termine ausfallen lassen'), - Icon::create('date') - )->asDialog(); + Icon::create('date'), + ['data-dialog' => ''] + ); } } |
