Skip to content

Commit b0b7672

Browse files
authored
Merge pull request #7342 from Expensify/OSBotify-cherry-pick-staging-7339
2 parents 74a962e + 1e4bf1c commit b0b7672

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ android {
152152
minSdkVersion rootProject.ext.minSdkVersion
153153
targetSdkVersion rootProject.ext.targetSdkVersion
154154
multiDexEnabled rootProject.ext.multiDexEnabled
155-
versionCode 1001013100
156-
versionName "1.1.31-0"
155+
versionCode 1001013101
156+
versionName "1.1.31-1"
157157
}
158158
splits {
159159
abi {

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</dict>
3232
</array>
3333
<key>CFBundleVersion</key>
34-
<string>1.1.31.0</string>
34+
<string>1.1.31.1</string>
3535
<key>ITSAppUsesNonExemptEncryption</key>
3636
<false/>
3737
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.1.31.0</string>
22+
<string>1.1.31.1</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.1.31-0",
3+
"version": "1.1.31-1",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/pages/home/HeaderView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ const HeaderView = (props) => {
144144
displayNamesWithTooltips={displayNamesWithTooltips}
145145
tooltipEnabled
146146
numberOfLines={1}
147-
textStyles={[styles.headerText]}
147+
textStyles={[styles.headerText, styles.textNoWrap]}
148148
shouldUseFullTitle={isChatRoom}
149149
/>
150150
{isChatRoom && (

src/styles/styles.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ const styles = {
274274
textTransform: 'uppercase',
275275
},
276276

277+
textNoWrap: {
278+
...whiteSpace.noWrap,
279+
},
280+
277281
colorReversed: {
278282
color: themeColors.textReversed,
279283
},

0 commit comments

Comments
 (0)