From 57bdb39e47ced49c6d0eaac2630fc91c4d13e730 Mon Sep 17 00:00:00 2001 From: DhaaraniCIT Date: Thu, 6 Feb 2025 14:06:07 +0530 Subject: [PATCH] branding based content changes fix --- .../intacct-c1-import-settings.component.html | 2 +- .../intacct-import-settings.component.html | 2 +- .../netsuite-export-settings.component.html | 8 ++++---- .../qbd-direct-data-sync.component.html | 2 +- .../qbd-direct-export-settings.component.html | 10 +++++----- .../qbo-clone-settings.component.html | 16 +++++++-------- .../qbo-export-settings.component.html | 20 +++++++++---------- .../xero-clone-settings.component.html | 6 +++--- .../xero-export-settings.component.html | 6 +++--- .../configuration-import-field.component.html | 18 ++++++++--------- ...onfiguration-mapping-fields.component.html | 2 +- .../configuration-select-field.component.html | 8 ++++---- .../configuration-skip-export.component.html | 8 ++++---- .../dashboard-error-section.component.html | 4 ++-- .../export-log-table.component.html | 2 +- .../generic-mapping-table.component.html | 4 ++-- .../generic-mapping-v2.component.html | 4 ++-- .../qbd-mapping-table.component.html | 2 +- .../intacct-location-entity.component.html | 4 ++-- .../dashboard-mapping-resolve.component.html | 2 +- .../skip-export/skip-export.component.html | 8 ++++---- 21 files changed, 69 insertions(+), 69 deletions(-) diff --git a/src/app/integrations/intacct/intacct-shared/intacct-c1-import-settings/intacct-c1-import-settings.component.html b/src/app/integrations/intacct/intacct-shared/intacct-c1-import-settings/intacct-c1-import-settings.component.html index 50e43646b..875e729dd 100644 --- a/src/app/integrations/intacct/intacct-shared/intacct-c1-import-settings/intacct-c1-import-settings.component.html +++ b/src/app/integrations/intacct/intacct-shared/intacct-c1-import-settings/intacct-c1-import-settings.component.html @@ -4,7 +4,7 @@
diff --git a/src/app/integrations/intacct/intacct-shared/intacct-import-settings/intacct-import-settings.component.html b/src/app/integrations/intacct/intacct-shared/intacct-import-settings/intacct-import-settings.component.html index 700fac3ba..c5e4ad726 100644 --- a/src/app/integrations/intacct/intacct-shared/intacct-import-settings/intacct-import-settings.component.html +++ b/src/app/integrations/intacct/intacct-shared/intacct-import-settings/intacct-import-settings.component.html @@ -34,7 +34,7 @@
- +
diff --git a/src/app/integrations/netsuite/netsuite-shared/netsuite-export-settings/netsuite-export-settings.component.html b/src/app/integrations/netsuite/netsuite-shared/netsuite-export-settings/netsuite-export-settings.component.html index bea10dbbf..ed5df0819 100644 --- a/src/app/integrations/netsuite/netsuite-shared/netsuite-export-settings/netsuite-export-settings.component.html +++ b/src/app/integrations/netsuite/netsuite-shared/netsuite-export-settings/netsuite-export-settings.component.html @@ -136,11 +136,11 @@ [form]="exportSettingForm" [isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" - [label]="'Set the ' + (exportSettingForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | titlecase) + ' date as'" + [label]="'Set the ' + (exportSettingForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="'The selected type of date will reflect in the expenses exported from ' + brandingConfig.brandName + ' to NetSuite.'" [options]="reimbursableExpenseGroupingDateOptions" [iconPath]="'calendar'" - [placeholder]="'Select the date of the ' + (exportSettingForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | titlecase)" + [placeholder]="'Select the date of the ' + (exportSettingForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | lowercase)" [formControllerName]="'reimbursableExportDate'">
@@ -306,11 +306,11 @@ [form]="exportSettingForm" [isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" - [label]=" 'Set the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.get('creditCardExportType')?.value | lowercase)) + ' date as'" + [label]=" 'Set the ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="'The selected date will reflect in the corporate card expenses exported to NetSuite.'" [options]="cccExpenseGroupingDateOptions" [iconPath]="'calendar'" - [placeholder]="'Select the date of the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase))" + [placeholder]="'Select the date of the ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase)" [formControllerName]="'creditCardExportDate'">
diff --git a/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-data-sync/qbd-direct-data-sync.component.html b/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-data-sync/qbd-direct-data-sync.component.html index eb2955373..62c8e6a71 100644 --- a/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-data-sync/qbd-direct-data-sync.component.html +++ b/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-data-sync/qbd-direct-data-sync.component.html @@ -14,7 +14,7 @@
- {{field.attribute_type | snakeCaseToSpaceCase | titlecase}} + {{field.attribute_type | snakeCaseToSpaceCase | sentenceCase}}
{{field.count}} diff --git a/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-export-settings/qbd-direct-export-settings.component.html b/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-export-settings/qbd-direct-export-settings.component.html index 4084c0bbc..fec4f3404 100644 --- a/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-export-settings/qbd-direct-export-settings.component.html +++ b/src/app/integrations/qbd-direct/qbd-direct-shared/qbd-direct-export-settings/qbd-direct-export-settings.component.html @@ -65,8 +65,8 @@ [optionLabel]="'value'" [isFieldMandatory]="true" [mandatoryErrorListName]="'accounts payable'" - [label]="brandingContent.reimbursable.defaultReimbursableAccountPayableLabel + (exportSettingsForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | titlecase)" - [subLabel]="brandingContent.reimbursable.defaultReimbursableAccountPayableSubLabel + (exportSettingsForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | titlecase) + ' ,while debit lines will reflect the category chosen by the employee for each respective expense'" + [label]="brandingContent.reimbursable.defaultReimbursableAccountPayableLabel + (exportSettingsForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | lowercase)" + [subLabel]="brandingContent.reimbursable.defaultReimbursableAccountPayableSubLabel + (exportSettingsForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' ,while debit lines will reflect the category chosen by the employee for each respective expense'" [iconPath]="'list'" [placeholder]="'Select accounts payable'" [isMultiLineOption]="true" @@ -205,8 +205,8 @@ [optionLabel]="'value'" [isFieldMandatory]="true" [mandatoryErrorListName]="'a default credit account'" - [label]="brandingContent.corporateCard.defaultCCCAccountPayableLabel + (exportSettingsForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase)" - [subLabel]="brandingContent.corporateCard.defaultCCCAccountPayableSubLabel + (exportSettingsForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) + ' ,while debit lines will reflect the category chosen by the employee for each respective expense'" + [label]="brandingContent.corporateCard.defaultCCCAccountPayableLabel + (exportSettingsForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase)" + [subLabel]="brandingContent.corporateCard.defaultCCCAccountPayableSubLabel + (exportSettingsForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' ,while debit lines will reflect the category chosen by the employee for each respective expense'" [iconPath]="'list'" [placeholder]="'Select default account'" [isMultiLineOption]="true" @@ -253,7 +253,7 @@ [form]="exportSettingsForm" [isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" - [label]=" brandingContent.corporateCard.creditCardExpenseDateLabel + (brandingConfig.brandId === 'fyle' ? (exportSettingsForm.value.creditCardExportType | snakeCaseToSpaceCase | lowercase) : (exportSettingsForm.value.creditCardExportType | lowercase)) + ' date as'" + [label]=" brandingContent.corporateCard.creditCardExpenseDateLabel + (exportSettingsForm.value.creditCardExportType | snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="brandingContent.corporateCard.creditCardExpenseDateSubLabel" [options]="cccExpenseGroupingDateOptions" [iconPath]="'calendar'" diff --git a/src/app/integrations/qbo/qbo-onboarding/qbo-clone-settings/qbo-clone-settings.component.html b/src/app/integrations/qbo/qbo-onboarding/qbo-clone-settings/qbo-clone-settings.component.html index 4c4cbbe76..95f425421 100644 --- a/src/app/integrations/qbo/qbo-onboarding/qbo-clone-settings/qbo-clone-settings.component.html +++ b/src/app/integrations/qbo/qbo-onboarding/qbo-clone-settings/qbo-clone-settings.component.html @@ -66,7 +66,7 @@
+ [tooltipText]="'The integration will post the offset credit entry in ' + (exportSettingForm.get('reimbursableExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' to the selected Accounts Payable Account.'">
@@ -131,7 +131,7 @@
+ [tooltipText]="'The integration will post the offset credit entry in ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' to the selected Accounts Payable Account.'">
@@ -273,7 +273,7 @@
@@ -289,8 +289,8 @@ [iconPath]="'list'" [isFieldMandatory]="true" [mandatoryErrorListName]="'accounts payable'" - [label]="brandingContent.corporateCard.accountsPayableLabel + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) + ' be posted to?'" - [subLabel]="'The integration will post the offset credit entry in ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) + brandingContent.corporateCard.accountsPayableSubLabel" + [label]="brandingContent.corporateCard.accountsPayableLabel + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' be posted to?'" + [subLabel]="'The integration will post the offset credit entry in ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + brandingContent.corporateCard.accountsPayableSubLabel" [placeholder]="'Select accounts payable'" [isMultiLineOption]="isMultilineOption" [formControllerName]="'accountsPayable'"> @@ -332,11 +332,11 @@ [form]="exportSettingForm" [isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" - [label]=" 'Set the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.get('creditCardExportType')?.value | lowercase)) + ' date as'" + [label]=" 'Set the ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="'The selected date will reflect in the corporate card expenses exported to QuickBooks Online.'" [options]="cccExpenseGroupingDateOptions" [iconPath]="'calendar'" - [placeholder]="'Select the date of the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase))" + [placeholder]="'Select the date of the ' + (exportSettingForm.get('creditCardExportType')?.value | snakeCaseToSpaceCase | lowercase)" [formControllerName]="'creditCardExportDate'"> diff --git a/src/app/integrations/xero/xero-onboarding/xero-clone-settings/xero-clone-settings.component.html b/src/app/integrations/xero/xero-onboarding/xero-clone-settings/xero-clone-settings.component.html index dc9690418..a215e8ae4 100644 --- a/src/app/integrations/xero/xero-onboarding/xero-clone-settings/xero-clone-settings.component.html +++ b/src/app/integrations/xero/xero-onboarding/xero-clone-settings/xero-clone-settings.component.html @@ -82,7 +82,7 @@
[isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" [placeholder]="'Select export date'" - [label]="'Set the ' + (exportSettingForm.controls.reimbursableExportType.value| snakeCaseToSpaceCase | titlecase) + ' date as'" + [label]="'Set the ' + (exportSettingForm.controls.reimbursableExportType.value| snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="'The selected type of date will reflect in the expenses exported from ' + brandingConfig.brandName + ' to Xero.'" [options]="reimbursableExpenseGroupingDateOptions" [iconPath]="'calendar'" @@ -182,11 +182,11 @@
[form]="exportSettingForm" [isFieldMandatory]="true" [mandatoryErrorListName]="'export date'" - [label]=" 'Set the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.controls.creditCardExportType.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.controls.creditCardExportType.value | lowercase)) + ' date as'" + [label]=" 'Set the ' + (exportSettingForm.controls.creditCardExportType.value | snakeCaseToSpaceCase | lowercase) + ' date as'" [subLabel]="'The selected date will reflect in the corporate card expenses exported to Xero.'" [options]="cccExpenseGroupingDateOptions" [iconPath]="'calendar'" - [placeholder]="'Select the date of the ' + (brandingConfig.brandId === 'fyle' ? (exportSettingForm.controls.creditCardExportType.value | snakeCaseToSpaceCase | titlecase) : (exportSettingForm.controls.creditCardExportType.value | snakeCaseToSpaceCase | lowercase))" + [placeholder]="'Select the date of the ' + (exportSettingForm.controls.creditCardExportType.value | snakeCaseToSpaceCase | lowercase)" [formControllerName]="'creditCardExportDate'">
diff --git a/src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.html b/src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.html index 503b34d77..8d910826d 100644 --- a/src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.html +++ b/src/app/shared/components/configuration/configuration-import-field/configuration-import-field.component.html @@ -13,13 +13,13 @@
- +
- +
@@ -38,11 +38,11 @@

- Import {{ brandingConfig.brandId === 'co' ? (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | titlecase | lowercase ) : (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | titlecase) }} from {{ uiExposedAppName }} + Import {{ (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | lowercase ) }} from {{ uiExposedAppName }}

- The imported {{ brandingConfig.brandId === 'co' ? (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | titlecase | lowercase) : (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | titlecase) }} + The imported {{ (getDestinationField(expenseField.get('destination_field')?.value | snakeCaseToSpaceCase) | lowercase) }} from {{ uiExposedAppName }} will be a selectable field while creating an expense. will be an available field when creating an expense.
@@ -59,13 +59,13 @@
- {{ brandingConfig.brandId === 'co' ? (option.display_name | snakeCaseToSpaceCase | sentenceCase) : option.display_name | snakeCaseToSpaceCase | titlecase }} + {{ (option.display_name | snakeCaseToSpaceCase | sentenceCase) }}
- {{ brandingConfig.brandId === 'co' ? (item.display_name | snakeCaseToSpaceCase | sentenceCase) : item.display_name | snakeCaseToSpaceCase | titlecase }} + {{ item.display_name | snakeCaseToSpaceCase | sentenceCase }}
@@ -85,12 +85,12 @@
- {{ brandingConfig.brandId === 'co' ? (option.display_name | sentenceCase) : option.display_name }} + {{ (option.display_name | sentenceCase) }}

- {{ brandingConfig.brandId === 'co' ? (item.display_name | sentenceCase) : item.display_name }} + {{ (item.display_name | sentenceCase) }}

@@ -129,7 +129,7 @@
-

{{brandingConfig.brandName}} {{brandingConfig.brandId === 'co' ? 'field' : 'Field'}}

+

{{brandingConfig.brandName}} field

diff --git a/src/app/shared/components/configuration/configuration-mapping-fields/configuration-mapping-fields.component.html b/src/app/shared/components/configuration/configuration-mapping-fields/configuration-mapping-fields.component.html index 3b2471945..e97b5b829 100644 --- a/src/app/shared/components/configuration/configuration-mapping-fields/configuration-mapping-fields.component.html +++ b/src/app/shared/components/configuration/configuration-mapping-fields/configuration-mapping-fields.component.html @@ -12,7 +12,7 @@
- {{ item[destinationAttributeNames.label] | snakeCaseToSpaceCase | titlecase }} + {{ item[destinationAttributeNames.label] | snakeCaseToSpaceCase | sentenceCase }}
diff --git a/src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.html b/src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.html index bc2ef2d8c..4deb203b2 100644 --- a/src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.html +++ b/src/app/shared/components/configuration/configuration-select-field/configuration-select-field.component.html @@ -110,7 +110,7 @@
-

{{ value | titlecase | snakeCaseToSpaceCase }}

+

{{ value | snakeCaseToSpaceCase | sentenceCase }}

{{ placeholder }} @@ -118,7 +118,7 @@
-

{{ day | titlecase | snakeCaseToSpaceCase }}

+

{{ day | snakeCaseToSpaceCase | sentenceCase }}

@@ -140,7 +140,7 @@
-

{{ value | titlecase | snakeCaseToSpaceCase }}

+

{{ value | snakeCaseToSpaceCase | sentenceCase }}

{{ value }}

@@ -149,7 +149,7 @@
-

{{ memo | titlecase | snakeCaseToSpaceCase }}

+

{{ memo | snakeCaseToSpaceCase | sentenceCase }}

diff --git a/src/app/shared/components/configuration/configuration-skip-export/configuration-skip-export.component.html b/src/app/shared/components/configuration/configuration-skip-export/configuration-skip-export.component.html index 4cd20fd8a..98e65a19e 100644 --- a/src/app/shared/components/configuration/configuration-skip-export/configuration-skip-export.component.html +++ b/src/app/shared/components/configuration/configuration-skip-export/configuration-skip-export.component.html @@ -24,7 +24,7 @@ For options - {{ (option.field_name === 'report_title' ? 'report_name' : option.field_name) | snakeCaseToSpaceCase | titlecase }} + {{ (option.field_name === 'report_title' ? 'report_name' : option.field_name) | snakeCaseToSpaceCase | sentenceCase }} Report Number @@ -33,7 +33,7 @@ For selected option - {{ (selectedOption.field_name === 'report_title' ? 'report_name' : selectedOption.field_name) | snakeCaseToSpaceCase | titlecase }} + {{ (selectedOption.field_name === 'report_title' ? 'report_name' : selectedOption.field_name) | snakeCaseToSpaceCase | sentenceCase }} Report Number @@ -95,7 +95,7 @@ For options - {{ option.field_name | snakeCaseToSpaceCase | titlecase }} + {{ option.field_name | snakeCaseToSpaceCase | sentenceCase }} Report Number @@ -104,7 +104,7 @@ For selected option - {{ selectedOption.field_name | snakeCaseToSpaceCase | titlecase }} + {{ selectedOption.field_name | snakeCaseToSpaceCase | sentenceCase }} Report Number diff --git a/src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.html b/src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.html index 4b5147ac1..2700d70a0 100644 --- a/src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.html +++ b/src/app/shared/components/dashboard/dashboard-error-section/dashboard-error-section.component.html @@ -75,7 +75,7 @@
-

{{ error.error_title | snakeCaseToSpaceCase | titlecase }}

+

{{ error.error_title | snakeCaseToSpaceCase | sentenceCase }}

{{ error.error_detail }} @@ -132,7 +132,7 @@

-

{{ brandingConfig.brandId === 'co' ? (errorType | snakeCaseToSpaceCase | sentenceCase) : (errorType | snakeCaseToSpaceCase | titlecase) }} {{brandingContentCommon.errors}}

+

{{ brandingConfig.brandId === 'co' ? (errorType | snakeCaseToSpaceCase | sentenceCase) : (errorType | snakeCaseToSpaceCase | lowercase) }} {{brandingContentCommon.errors}}

Resolve the following mapping errors to export your failed expenses successfully to {{uiExposedAppName}}

diff --git a/src/app/shared/components/export-log/export-log-table/export-log-table.component.html b/src/app/shared/components/export-log/export-log-table/export-log-table.component.html index 875bfe7e9..60c439aa2 100644 --- a/src/app/shared/components/export-log/export-log-table/export-log-table.component.html +++ b/src/app/shared/components/export-log/export-log-table/export-log-table.component.html @@ -37,7 +37,7 @@ - {{brandingConfig.brandId === 'co' ? (rowData.exportedAs | snakeCaseToSpaceCase | sentenceCase) : (rowData.exportedAs | snakeCaseToSpaceCase | titlecase)}} + {{ (rowData.exportedAs | snakeCaseToSpaceCase | sentenceCase) }} diff --git a/src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.html b/src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.html index 7c00ea4b5..0cd471b41 100644 --- a/src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.html +++ b/src/app/shared/components/helper/mapping/generic-mapping-table/generic-mapping-table.component.html @@ -1,8 +1,8 @@ - {{helper.sentenseCaseConversion(sourceField | snakeCaseToSpaceCase | titlecase)}} in {{brandingConfig.brandName}} - {{helper.sentenseCaseConversion(destinationField | snakeCaseToSpaceCase | titlecase)}} in {{uiExposedAppName}} + {{ (sourceField | snakeCaseToSpaceCase | sentenceCase) }} in {{brandingConfig.brandName}} + {{ (destinationField | snakeCaseToSpaceCase | sentenceCase) }} in {{uiExposedAppName}} Status diff --git a/src/app/shared/components/helper/mapping/generic-mapping-v2/generic-mapping-v2.component.html b/src/app/shared/components/helper/mapping/generic-mapping-v2/generic-mapping-v2.component.html index af83a6e01..889fb5365 100644 --- a/src/app/shared/components/helper/mapping/generic-mapping-v2/generic-mapping-v2.component.html +++ b/src/app/shared/components/helper/mapping/generic-mapping-v2/generic-mapping-v2.component.html @@ -20,8 +20,8 @@
+ [mainText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSearchZeroStateHeaderText : brandingContent.mappingSearchZeroStateHeaderText + (this.sourceField | snakeCaseToSpaceCase | lowercase) + ' mappings.'" + [subText]="brandingConfig.brandId === 'fyle' ? brandingContent.mappingSearchZeroStateSubHeaderText + (this.sourceField | snakeCaseToSpaceCase | lowercase) + ' mappings': brandingContent.mappingSearchZeroStateSubHeaderText">

diff --git a/src/app/shared/components/qbd/mapping/qbd-mapping-table/qbd-mapping-table.component.html b/src/app/shared/components/qbd/mapping/qbd-mapping-table/qbd-mapping-table.component.html index bfaf868e4..c0d1dc64b 100644 --- a/src/app/shared/components/qbd/mapping/qbd-mapping-table/qbd-mapping-table.component.html +++ b/src/app/shared/components/qbd/mapping/qbd-mapping-table/qbd-mapping-table.component.html @@ -2,7 +2,7 @@ - {{ fyleHeaderName | snakeCaseToSpaceCase | titlecase }} + {{ fyleHeaderName | snakeCaseToSpaceCase | sentenceCase }} {{ destinationHeaderName }} Status diff --git a/src/app/shared/components/si/core/intacct-location-entity/intacct-location-entity.component.html b/src/app/shared/components/si/core/intacct-location-entity/intacct-location-entity.component.html index 9d92b45af..cf8cbd1e2 100644 --- a/src/app/shared/components/si/core/intacct-location-entity/intacct-location-entity.component.html +++ b/src/app/shared/components/si/core/intacct-location-entity/intacct-location-entity.component.html @@ -14,7 +14,7 @@
- {{(brandingConfig.brandId==='fyle' ? (brandingConfig.brandName | uppercase) : brandingConfig.brandName | sentenceCase)}} + {{(brandingConfig.brandName | sentenceCase)}}

{{ fyleOrgName | trimCharacter: 26 }} @@ -28,7 +28,7 @@

- {{(brandingConfig.brandId==='fyle' ? (appName | uppercase) : appName)}} + {{(appName)}}

diff --git a/src/app/shared/components/si/helper/dashboard-mapping-resolve/dashboard-mapping-resolve.component.html b/src/app/shared/components/si/helper/dashboard-mapping-resolve/dashboard-mapping-resolve.component.html index 04618eb7d..2c960e792 100644 --- a/src/app/shared/components/si/helper/dashboard-mapping-resolve/dashboard-mapping-resolve.component.html +++ b/src/app/shared/components/si/helper/dashboard-mapping-resolve/dashboard-mapping-resolve.component.html @@ -4,7 +4,7 @@ Category - {{getCategoryDestinationType() | snakeCaseToSpaceCase | titlecase}} + {{getCategoryDestinationType() | snakeCaseToSpaceCase | sentenceCase}} diff --git a/src/app/shared/components/si/helper/skip-export/skip-export.component.html b/src/app/shared/components/si/helper/skip-export/skip-export.component.html index 1b709ba3e..3b2dcef2f 100644 --- a/src/app/shared/components/si/helper/skip-export/skip-export.component.html +++ b/src/app/shared/components/si/helper/skip-export/skip-export.component.html @@ -23,11 +23,11 @@ - {{ (option.field_name === 'report_title' ? 'report_name' : option.field_name) | snakeCaseToSpaceCase | titlecase }} + {{ (option.field_name === 'report_title' ? 'report_name' : option.field_name) | snakeCaseToSpaceCase | sentenceCase }} - {{ (selectedOption.field_name === 'report_title' ? 'report_name' : selectedOption.field_name) | snakeCaseToSpaceCase | titlecase }} + {{ (selectedOption.field_name === 'report_title' ? 'report_name' : selectedOption.field_name) | snakeCaseToSpaceCase | sentenceCase }} - {{ option.field_name | snakeCaseToSpaceCase | titlecase }} + {{ option.field_name | snakeCaseToSpaceCase | sentenceCase }} - {{ selectedOption.field_name | snakeCaseToSpaceCase | titlecase }} + {{ selectedOption.field_name | snakeCaseToSpaceCase | sentenceCase }}