Skip to content

Commit 683ac07

Browse files
authored
[MOO-2128] Fix app crash in react native new architecture (#288)
2 parents 3404c4e + fe960e6 commit 683ac07

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

packages/atlas-core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
99
### Fixed
1010

1111
- We fixed an issue with radio buttons being distorted in some cases.
12+
- We fixed an app exception caused by fontSize: 0 in the React Native New Architecture.
1213

1314
## [4.3.0] Atlas Core - 2025-10-10
1415

packages/atlas-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "atlas-core",
33
"moduleName": "Atlas Core",
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2024. All rights reserved.",
77
"repository": {

packages/atlas/src/themesource/atlas_core/native/core/helpers/buttons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const btnIcon: ActionButtonType = {
9696
color: font.colorTitle
9797
},
9898
caption: {
99-
fontSize: 0
99+
display: "none"
100100
}
101101
};
102102
export const btnIconPrimary: ActionButtonType = merge(btnIcon, {
@@ -144,7 +144,7 @@ export const btnIconGrayRounded: ActionButtonType = {
144144
color: contrast.high
145145
},
146146
caption: {
147-
fontSize: 0
147+
display: "none"
148148
}
149149
};
150150
//

0 commit comments

Comments
 (0)