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 = () =>
1698
1698
export const ADMIN_BRANDING_LOGO_REQUIREMENT = ( ) =>
1699
1699
`.SVG, .PNG, or .JPG only • Max 2MB` ;
1700
1700
export 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` ;
1702
1702
export const ADMIN_BRANDING_FAVICON_SIZE_ERROR = ( ) =>
1703
1703
`Uploaded file must be less than 2MB` ;
1704
1704
export const ADMIN_BRANDING_FAVICON_FORMAT_ERROR = ( ) =>
1705
1705
`Uploaded file must be in .ICO, .PNG, and .JPG formats` ;
1706
1706
export const ADMIN_BRANDING_FAVICON_REQUIREMENT = ( ) =>
1707
- `.ICO, .PNG, or .JPG only • Max 32X32 ` ;
1707
+ `.ICO, .PNG, or .JPG only • Max 48X48 ` ;
1708
1708
export const PROFILE_DISPLAY_PICTURE_REQUIREMENT = ( ) =>
1709
1709
`.ICO, .PNG, or .JPG only • Max 32X32` ;
1710
1710
export 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) => {
22
22
min-width: 24px;
23
23
width: 24px;
24
24
height: 24px;
25
- object-fit: contain;
26
25
}
27
26
` ;
28
27
@@ -49,8 +48,10 @@ export const AppsmithLink = () => {
49
48
alt = "Appsmith logo"
50
49
className = "t--appsmith-logo"
51
50
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
54
55
: AppsmithLogo
55
56
}
56
57
/>
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import { ASSETS_CDN_URL } from "constants/ThirdPartyConstants";
13
13
import { getAssetUrl } from "ee/utils/airgapHelpers" ;
14
14
import { LightModeTheme } from "@appsmith/wds-theming" ;
15
15
16
- const FAVICON_MAX_WIDTH = 32 ;
17
- const FAVICON_MAX_HEIGHT = 32 ;
16
+ const FAVICON_MAX_WIDTH = 48 ;
17
+ const FAVICON_MAX_HEIGHT = 48 ;
18
18
const DEFAULT_BRANDING_PRIMARY_COLOR = "#E15615" ;
19
19
20
20
export const APPSMITH_BRAND_PRIMARY_COLOR =
You can’t perform that action at this time.
0 commit comments