Skip to content

Commit

Permalink
pkp/pkp-lib#10444 Add modalStyle when using AjaxModal
Browse files Browse the repository at this point in the history
  • Loading branch information
blesildaramirez committed Nov 17, 2024
1 parent 9d1aa56 commit 406f612
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ public function getCellActions($request, $row, $column, $position = GridHandler:
'edit',
new AjaxModal(
$dispatcher->url($request, PKPApplication::ROUTE_COMPONENT, null, 'grid.issues.BackIssueGridHandler', 'editIssue', null, ['issueId' => $issue->getId()]),
__('plugins.importexport.common.settings.DOIPluginSettings')
__('plugins.importexport.common.settings.DOIPluginSettings'),
'side-modal'
),
$issue->getIssueIdentification(),
null
Expand Down
3 changes: 2 additions & 1 deletion plugins/generic/announcementFeed/AnnouncementFeedPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ public function getActions($request, $verb)
'settings',
new AjaxModal(
$router->url($request, null, null, 'manage', null, ['verb' => 'settings', 'plugin' => $this->getName(), 'category' => 'generic']),
$this->getDisplayName()
$this->getDisplayName(),
'side-modal'
),
__('manager.plugins.settings'),
null
Expand Down

0 comments on commit 406f612

Please sign in to comment.