TP-36903 | Updated Package Json and Few Css Fixes
This commit is contained in:
@@ -131,8 +131,8 @@ def reactNativeArchitectures() {
|
||||
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
||||
}
|
||||
|
||||
def VERSION_CODE = 76
|
||||
def VERSION_NAME = "2.3.3"
|
||||
def VERSION_CODE = 77
|
||||
def VERSION_NAME = "2.3.4"
|
||||
|
||||
android {
|
||||
ndkVersion rootProject.ext.ndkVersion
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "AV_APP",
|
||||
"version": "2.3.3",
|
||||
"version": "2.3.4",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"android:dev": "yarn move:dev && react-native run-android",
|
||||
|
||||
@@ -32,7 +32,7 @@ const PerformanceCard = () => {
|
||||
setSelectedFilters(
|
||||
getPerformanceDetailFilter(
|
||||
item.redirectionType,
|
||||
Object.keys(filters['COMMON']?.filters)?.includes(
|
||||
Object.keys(filters?.['COMMON']?.filters ?? {})?.includes(
|
||||
CurrentAllocationStatsFilterMap[item.redirectionType]
|
||||
)
|
||||
)
|
||||
|
||||
@@ -34,7 +34,15 @@ const PerformanceOverview = () => {
|
||||
navigateTo={PageRouteEnum.CASH_COLLECTED}
|
||||
rightSideView={
|
||||
<View style={[GenericStyles.row, GenericStyles.alignCenter]}>
|
||||
<Text style={[styles.fw700, styles.leftContent, GenericStyles.fontSize16]}>
|
||||
<Text
|
||||
numberOfLines={1}
|
||||
style={[
|
||||
styles.fw700,
|
||||
styles.leftContent,
|
||||
GenericStyles.fontSize16,
|
||||
{ maxWidth: 150 },
|
||||
]}
|
||||
>
|
||||
{formatAmount(totalCashCollected, false)}
|
||||
</Text>
|
||||
<View style={styles.rightIcon}>
|
||||
|
||||
Reference in New Issue
Block a user