From b6a36a1979187e777e076c57bedca7c31bef2ef8 Mon Sep 17 00:00:00 2001 From: OSBotify <76178356+OSBotify@users.noreply.github.com> Date: Fri, 11 Mar 2022 07:25:18 -0800 Subject: [PATCH 1/2] Merge pull request #8095 from Expensify/version-BUILD-1d44ed3179c07e30a1bfb014a7547d85fd62fd8c (cherry picked from commit 91016d06d2e1cb574e1842093f26a409446fc8df) --- android/app/build.gradle | 4 ++-- ios/NewExpensify/Info.plist | 2 +- ios/NewExpensifyTests/Info.plist | 2 +- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 26dda62985a..1829fafd63f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -152,8 +152,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001014203 - versionName "1.1.42-3" + versionCode 1001014204 + versionName "1.1.42-4" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index c693e5f82a8..3b825dae3b9 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -31,7 +31,7 @@ CFBundleVersion - 1.1.42.3 + 1.1.42.4 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index bdc05e72a73..792bfdb28fd 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.42.3 + 1.1.42.4 diff --git a/package-lock.json b/package-lock.json index ac9e65e362a..6a543fa6edb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.42-3", + "version": "1.1.42-4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 93a52b95394..bd685cfb1dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.42-3", + "version": "1.1.42-4", "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.", From 8b59a8f3d9216407062b80db1b8ca80581fba17d Mon Sep 17 00:00:00 2001 From: Amal Nazeem Date: Fri, 11 Mar 2022 10:13:43 -0500 Subject: [PATCH 2/2] Merge pull request #8058 from Expensify/amal-reapply-pr-correctly Reapply RoomHeaderAvatars Logic to fix regression correctly this time (cherry picked from commit 1d44ed3179c07e30a1bfb014a7547d85fd62fd8c) --- src/pages/ReportDetailsPage.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/ReportDetailsPage.js b/src/pages/ReportDetailsPage.js index 7e5a38625c9..d183a833a4c 100644 --- a/src/pages/ReportDetailsPage.js +++ b/src/pages/ReportDetailsPage.js @@ -5,7 +5,7 @@ import Str from 'expensify-common/lib/str'; import _ from 'underscore'; import {View, ScrollView} from 'react-native'; import lodashGet from 'lodash/get'; -import Avatar from '../components/Avatar'; +import RoomHeaderAvatars from '../components/RoomHeaderAvatars'; import compose from '../libs/compose'; import withLocalize, {withLocalizePropTypes} from '../components/withLocalize'; import ONYXKEYS from '../ONYXKEYS'; @@ -108,6 +108,7 @@ class ReportDetailsPage extends Component { } render() { + const isPolicyExpenseChat = ReportUtils.isPolicyExpenseChat(this.props.report); const isChatRoom = ReportUtils.isChatRoom(this.props.report); const chatRoomSubtitle = ReportUtils.getChatRoomSubtitle(this.props.report, this.props.policies); const participants = lodashGet(this.props.report, 'participants', []); @@ -136,13 +137,12 @@ class ReportDetailsPage extends Component { - + + +