Merge pull request #2136 from sevannerse/fix-module-history

module history description is fixed #mz7u2p
This commit is contained in:
Cüneyt Şentürk 2021-06-25 12:09:02 +03:00 committed by GitHub
commit 765e892fe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class CreateModuleUpdatedHistory
'company_id' => $model->company_id,
'module_id' => $model->id,
'version' => $event->new,
'description' => trans('modules.history.updated', ['module' => $module->getAlias()]),
'description' => trans('modules.updated_2', ['module' => $module->getAlias()]),
]);
}
}

View File

@ -27,7 +27,7 @@ return [
'installed' => ':module installed',
'uninstalled' => ':module uninstalled',
//'updated' => ':module updated',
'updated_2' => ':module updated',
'enabled' => ':module enabled',
'disabled' => ':module disabled',