Skip to content

Commit 342b418

Browse files
authored
chore(*): Try to fix error when running deployed version. (#145)
1 parent 7c11506 commit 342b418

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

azure-pipelines/igniteui-angular-grid-examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ stages:
2929
jobs:
3030
- job: BuildSamples
3131
steps:
32-
- checkout: 'self'
32+
- checkout: 'self'
3333
clean: true
3434

3535
- task: NodeTool@0
3636
displayName: 'Install Node'
3737
inputs:
3838
versionSource: 'spec'
39-
versionSpec: '20.x'
39+
versionSpec: '22.x'
4040

4141
- task: Bash@3
4242
displayName: 'Create download artifact per sample (Shell)'
@@ -65,7 +65,7 @@ stages:
6565
# Convert to camel-case (capitalize first letters and remove hyphens)
6666
dirName=$(echo "$dirName" | sed -E 's/(^|-)([a-z])/\U\2/g')
6767
fi
68-
68+
6969
echo "Processing directory: $dirName"
7070
# Define the name for the zip file
7171
zipName="$(Build.ArtifactStagingDirectory)/IgniteUI_Angular_ApplicationSample_${dirName}_Source.zip"

projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@
5555
</ng-template>
5656
</igx-column>
5757
<igx-column field="unitsSold" header="Sold Units Last Month" dataType="number" width="10%" [sortable]="true"></igx-column>
58-
<!-- <igx-column field="salesTrendData" header="Monthly Sales Trends" filterable="false" width="15%">
58+
<igx-column field="salesTrendData" header="Monthly Sales Trends" filterable="false" width="15%">
5959
<ng-template igxCell let-cell="cell" let-val>
6060
@defer {
6161
<sales-trends-chart [dataSource]="cell.value"></sales-trends-chart>
6262
}
6363
</ng-template>
64-
</igx-column> -->
64+
</igx-column>
6565
<igx-column field="grossPrice" header="Gross Price" dataType="currency" width="7%" [sortable]="true"></igx-column>
6666
<igx-column field="netPrice" header="Net Price" dataType="currency" width="7%" [sortable]="true"></igx-column>
6767
<igx-column field="totalNetProfit" header="Net Profit" dataType="currency" width="7%" [sortable]="true"></igx-column>

0 commit comments

Comments
 (0)