Skip to content

Commit

Permalink
Merge pull request Expensify#53611 from Krishna2323/krishna2323/issue…
Browse files Browse the repository at this point in the history
…/53565

fix: Report fields - Initial value field name is Date for text report field.
  • Loading branch information
carlosmiceli authored Dec 18, 2024
2 parents 1721cf4 + 27aeb7f commit fae8b36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function ReportFieldsSettingsPage({
style={[styles.moneyRequestMenuItem]}
titleStyle={styles.flex1}
title={WorkspaceReportFieldUtils.getReportFieldInitialValue(reportField)}
description={translate('common.date')}
description={isDateFieldType ? translate('common.date') : translate('common.initialValue')}
shouldShowRightIcon={!isDateFieldType && !hasAccountingConnections}
interactive={!isDateFieldType && !hasAccountingConnections}
onPress={() => Navigation.navigate(ROUTES.WORKSPACE_EDIT_REPORT_FIELDS_INITIAL_VALUE.getRoute(policyID, reportFieldID))}
Expand Down

0 comments on commit fae8b36

Please sign in to comment.