Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Quetzacoalt91 committed Dec 17, 2024
1 parent f3b5b1e commit c60f6e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion classes/Services/LogsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __construct(State $state, Translator $translator, string $logsPa
*
* @return array{'button_label': string, 'download_path': string, 'filename': string}
*/
public function getDownloadLogsdData(string $task): array
public function getDownloadLogsData(string $task): array
{
$logsPath = $this->getDownloadLogsPath($task);

Expand Down
2 changes: 1 addition & 1 deletion controllers/admin/self-managed/LogsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function getDownloadLogsButton(): JsonResponse
PageSelectors::DOWNLOAD_LOGS_PARENT_ID,
$this->getTwig()->render(
'@ModuleAutoUpgrade/components/download_logs.html.twig',
$this->upgradeContainer->getLogsService()->getDownloadLogsdData($type)
$this->upgradeContainer->getLogsService()->getDownloadLogsData($type)
)
);
}
Expand Down

0 comments on commit c60f6e9

Please sign in to comment.