diff --git a/android/app/build.gradle b/android/app/build.gradle
index 089d89f9afe1..503b2d941a82 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -106,8 +106,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001031505
- versionName "1.3.15-5"
+ versionCode 1001031506
+ versionName "1.3.15-6"
}
splits {
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index beb91c4abb0d..af0e9c38ebf9 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -30,7 +30,7 @@
CFBundleVersion
- 1.3.15.5
+ 1.3.15.6
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist
index 98bb06c2fb27..6462413cefd8 100644
--- a/ios/NewExpensifyTests/Info.plist
+++ b/ios/NewExpensifyTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.3.15.5
+ 1.3.15.6
diff --git a/package-lock.json b/package-lock.json
index 7676683d03c6..88024f346f81 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "new.expensify",
- "version": "1.3.15-5",
+ "version": "1.3.15-6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "new.expensify",
- "version": "1.3.15-5",
+ "version": "1.3.15-6",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
diff --git a/package.json b/package.json
index 593e6e3daf79..682a5db7faea 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.3.15-5",
+ "version": "1.3.15-6",
"author": "Expensify, Inc.",
"homepage": "https://new.expensify.com",
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
diff --git a/src/pages/home/report/ReportActionItem.js b/src/pages/home/report/ReportActionItem.js
index 117ea6515687..3660e7d94bf2 100644
--- a/src/pages/home/report/ReportActionItem.js
+++ b/src/pages/home/report/ReportActionItem.js
@@ -282,8 +282,14 @@ class ReportActionItem extends Component {
const reactions = _.get(this.props, ['action', 'message', 0, 'reactions'], []);
const hasReactions = reactions.length > 0;
+ const numberOfThreadReplies = _.get(this.props, ['action', 'childVisibleActionCount'], 0);
+ const hasReplies = numberOfThreadReplies > 0;
+
const shouldDisplayThreadReplies =
- this.props.action.childCommenterCount && Permissions.canUseThreads(this.props.betas) && !ReportUtils.isThreadFirstChat(this.props.action, this.props.report.reportID);
+ hasReplies &&
+ this.props.action.childCommenterCount &&
+ Permissions.canUseThreads(this.props.betas) &&
+ !ReportUtils.isThreadFirstChat(this.props.action, this.props.report.reportID);
const oldestFourEmails = lodashGet(this.props.action, 'childOldestFourEmails', '').split(',');
return (
@@ -300,7 +306,7 @@ class ReportActionItem extends Component {
{shouldDisplayThreadReplies && (