diff options
author | David Cho-Lerat <david.cho-lerat@sonarsource.com> | 2023-07-19 14:36:54 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-07-19 20:03:04 +0000 |
commit | 9d22c3b21728bff64833e66087fa15e87c2d6a7d (patch) | |
tree | 6b6908ae6cae6b806425455a0426ecb79c89e18a /sonar-core | |
parent | 3cd0783bf3d968852d327bdf65b17eb54314bfe0 (diff) | |
download | sonarqube-9d22c3b21728bff64833e66087fa15e87c2d6a7d.tar.gz sonarqube-9d22c3b21728bff64833e66087fa15e87c2d6a7d.zip |
SONAR-19971 Fix custom logo width
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java index 360e34ffee6..403a03cc2e8 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java +++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java @@ -141,7 +141,7 @@ public class CorePropertyDefinitions { PropertyDefinition.builder(WebConstants.SONAR_LF_LOGO_WIDTH_PX) .deprecatedKey("sonar.branding.image.width") .name("Width of image in pixels") - .description("Width in pixels, given that the height of the the image is constrained to 30px.") + .description("Width in pixels, constrained to 150px (the height of the image is constrained to 40px).") .category(CoreProperties.CATEGORY_GENERAL) .subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL) .build(), |