Skip to content

Commit

Permalink
Fix translation key for scheduler dashboard. (#3736)
Browse files Browse the repository at this point in the history
  • Loading branch information
rob006 authored Feb 16, 2023
1 parent d8fa791 commit 0da069b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/core/src/Foundation/ApplicationInfoProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function getSchedulerStatus(): string
// If the schedule has not run in the last 5 minutes, mark it as inactive.
return Carbon::parse($status) > Carbon::now()->subMinutes(5)
? $this->translator->trans('core.admin.dashboard.status.scheduler.active')
: $this->translator->trans('core.admin.status.scheduler.inactive');
: $this->translator->trans('core.admin.dashboard.status.scheduler.inactive');
}

/**
Expand Down

0 comments on commit 0da069b

Please sign in to comment.