Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Configuration Select Field: preview text update #312

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ <h5 class="configuration--field-label sub-text-color paragraph">
</mat-form-field>
<app-mandatory-error-message *ngIf="isFieldMandatory && form.controls[formControllerName].touched && !form.controls[formControllerName].valid && !form.controls[formControllerName].disabled" [listName]="mandatoryErrorListName" [customErrorMessage]="customErrorMessage"></app-mandatory-error-message>
<div *ngIf="(formControllerName === 'reimbursableExportType' && form.value.reimbursableExportType) || (formControllerName === 'creditCardExportType' && form.value.creditCardExportType)" class="configuration-select-field--preview-text sub-text-color">
<p *ngIf="formControllerName === 'reimbursableExportType'">Click <span class="configuration-select-field--preview-btn pointer" (click)="showQBOExportPreview(form.value.reimbursableExportType, null)">here</span> to Preivew on how it looks on QuickBooks Online</p>
<p *ngIf="formControllerName === 'creditCardExportType'">Click <span class="configuration-select-field--preview-btn pointer" (click)="showQBOExportPreview(null, form.value.creditCardExportType)">here</span> to Preivew on how it looks on QuickBooks Online</p>
<p *ngIf="formControllerName === 'reimbursableExportType'">Click <span class="configuration-select-field--preview-btn pointer" (click)="showQBOExportPreview(form.value.reimbursableExportType, null)">here</span> to Preview on how it looks on QuickBooks Online</p>
<p *ngIf="formControllerName === 'creditCardExportType'">Click <span class="configuration-select-field--preview-btn pointer" (click)="showQBOExportPreview(null, form.value.creditCardExportType)">here</span> to Preview on how it looks on QuickBooks Online</p>
</div>

<div *ngIf="formControllerName === 'autoMapEmployee'" class="configuration-select-field--select-example-section paragraph">
Expand Down
Loading