File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -1698,13 +1698,13 @@ export const ADMIN_BRANDING_LOGO_FORMAT_ERROR = () =>
16981698export const ADMIN_BRANDING_LOGO_REQUIREMENT = ( ) =>
16991699 `.SVG, .PNG, or .JPG only • Max 2MB` ;
17001700export const ADMIN_BRANDING_FAVICON_DIMENSION_ERROR = ( ) =>
1701- `Uploaded file must have a max size of 32X32 pixels` ;
1701+ `Uploaded file must have a max size of 48X48 pixels` ;
17021702export const ADMIN_BRANDING_FAVICON_SIZE_ERROR = ( ) =>
17031703 `Uploaded file must be less than 2MB` ;
17041704export const ADMIN_BRANDING_FAVICON_FORMAT_ERROR = ( ) =>
17051705 `Uploaded file must be in .ICO, .PNG, and .JPG formats` ;
17061706export const ADMIN_BRANDING_FAVICON_REQUIREMENT = ( ) =>
1707- `.ICO, .PNG, or .JPG only • Max 32X32 ` ;
1707+ `.ICO, .PNG, or .JPG only • Max 48X48 ` ;
17081708export const PROFILE_DISPLAY_PICTURE_REQUIREMENT = ( ) =>
17091709 `.ICO, .PNG, or .JPG only • Max 32X32` ;
17101710export const ADMIN_BRANDING_COLOR_TOOLTIP_PRIMARY = ( ) =>
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ export const StyledLink = styled((props) => {
2222 min-width: 24px;
2323 width: 24px;
2424 height: 24px;
25- object-fit: contain;
2625 }
2726` ;
2827
@@ -49,8 +48,10 @@ export const AppsmithLink = () => {
4948 alt = "Appsmith logo"
5049 className = "t--appsmith-logo"
5150 src = {
52- organizationConfig . brandLogoUrl
53- ? organizationConfig . brandLogoUrl
51+ organizationConfig . brandFaviconUrl &&
52+ organizationConfig . brandFaviconUrl !==
53+ "https://assets.appsmith.com/appsmith-favicon-orange.ico"
54+ ? organizationConfig . brandFaviconUrl
5455 : AppsmithLogo
5556 }
5657 />
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import { ASSETS_CDN_URL } from "constants/ThirdPartyConstants";
1313import { getAssetUrl } from "ee/utils/airgapHelpers" ;
1414import { LightModeTheme } from "@appsmith/wds-theming" ;
1515
16- const FAVICON_MAX_WIDTH = 32 ;
17- const FAVICON_MAX_HEIGHT = 32 ;
16+ const FAVICON_MAX_WIDTH = 48 ;
17+ const FAVICON_MAX_HEIGHT = 48 ;
1818const DEFAULT_BRANDING_PRIMARY_COLOR = "#E15615" ;
1919
2020export const APPSMITH_BRAND_PRIMARY_COLOR =
You can’t perform that action at this time.
0 commit comments