Skip to content

Commit

Permalink
Fix minor qa items (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwin1111 authored Jan 16, 2024
1 parent 17c66f7 commit a25c816
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Sage300CompleteExportLogComponent implements OnInit {

accountingExports: AccountingExportList [];

filteredAccountingExports: AccountingExportList [];
filteredAccountingExports: AccountingExportList [] = [];

expenses: Expense [] = [];

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div>
<app-main-menu [modules]="modules" [activeItem]="modules[0]" [appName]="appName" [isDropdrownRequired]="true" (refreshDimensionClick)="refreshDimensions($event)"></app-main-menu>
<app-main-menu [modules]="modules" [activeItem]="modules[0]" [appName]="appName" [isDropdrownRequired]="false" (refreshDimensionClick)="refreshDimensions($event)"></app-main-menu>
<div>
<router-outlet></router-outlet>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class GenericMappingV2Component implements OnInit {
this.offset = paginator.offset;
this.sourceType = decodeURIComponent(decodeURIComponent(this.route.snapshot.params.source_field)).toUpperCase();
forkJoin([
this.mappingService.getGenericMappingsV2(10, 0, this.destinationField, this.selectedMappingFilter, this.alphabetFilter, this.sourceField, this.isCategoryMappingGeneric),
this.mappingService.getGenericMappingsV2(this.limit, 0, this.destinationField, this.selectedMappingFilter, this.alphabetFilter, this.sourceField, this.isCategoryMappingGeneric),
this.mappingService.getMappingStats(this.sourceField, this.destinationField, this.appName)
]).subscribe(
([mappingResponse, mappingStat]) => {
Expand Down

0 comments on commit a25c816

Please sign in to comment.