diff options
author | Jeanne <nyjeanne@gmail.com> | 2023-04-10 19:27:22 -0400 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-04-17 20:02:52 +0000 |
commit | 313a3e2ad82bc951142de15841420df0d4cc2af2 (patch) | |
tree | fd63f637615412013b5f6f6131d5e0f914729b61 /server/sonar-web/src/main/js/helpers | |
parent | f6f294fa869fe92235e7d9a45753ffded454e74c (diff) | |
download | sonarqube-313a3e2ad82bc951142de15841420df0d4cc2af2.tar.gz sonarqube-313a3e2ad82bc951142de15841420df0d4cc2af2.zip |
fix typo: AAudit -> Audit
Diffstat (limited to 'server/sonar-web/src/main/js/helpers')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts b/server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts index 279a1ac3f7b..8432dddc4b4 100644 --- a/server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts +++ b/server/sonar-web/src/main/js/helpers/mocks/definitions-list.ts @@ -1751,7 +1751,7 @@ export const definitions: ExtendedSettingDefinition[] = [ key: 'sonar.dbcleaner.auditHousekeeping', name: 'Audit Logs Housekeeping Frequency', description: - 'Define the frequency that will be used to delete security-related audit logs.<br>Setting your housekeeping policy to keep your audit logs for a long period of time (for example, only deleting logs yearly) can increase your database size and the amount of time it takes to download audit logs.<ul><li>"Weekly" => Audit logs older than a week will be deleted</li><li>"Monthly" => Audit logs older than a month will be deleted</li><li>"Trimestrial" => AAudit logs older than 3 months will be deleted</li><li>"Yearly" => Audit logs older than a year will be deleted</li></ul>', + 'Define the frequency that will be used to delete security-related audit logs.<br>Setting your housekeeping policy to keep your audit logs for a long period of time (for example, only deleting logs yearly) can increase your database size and the amount of time it takes to download audit logs.<ul><li>"Weekly" => Audit logs older than a week will be deleted</li><li>"Monthly" => Audit logs older than a month will be deleted</li><li>"Trimestrial" => Audit logs older than 3 months will be deleted</li><li>"Yearly" => Audit logs older than a year will be deleted</li></ul>', type: SettingType.SINGLE_SELECT_LIST, category: 'housekeeping', subCategory: 'auditLogs', |