Skip to content

Commit fae8b36

Browse files
authored
Merge pull request #53611 from Krishna2323/krishna2323/issue/53565
fix: Report fields - Initial value field name is Date for text report field.
2 parents 1721cf4 + 27aeb7f commit fae8b36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/workspace/reportFields/ReportFieldsSettingsPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function ReportFieldsSettingsPage({
113113
style={[styles.moneyRequestMenuItem]}
114114
titleStyle={styles.flex1}
115115
title={WorkspaceReportFieldUtils.getReportFieldInitialValue(reportField)}
116-
description={translate('common.date')}
116+
description={isDateFieldType ? translate('common.date') : translate('common.initialValue')}
117117
shouldShowRightIcon={!isDateFieldType && !hasAccountingConnections}
118118
interactive={!isDateFieldType && !hasAccountingConnections}
119119
onPress={() => Navigation.navigate(ROUTES.WORKSPACE_EDIT_REPORT_FIELDS_INITIAL_VALUE.getRoute(policyID, reportFieldID))}

0 commit comments

Comments
 (0)