Skip to content

Commit f12397e

Browse files
committed
fix conflicts
2 parents 73dad8f + abfac2c commit f12397e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/deploy-preview.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
4040
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
41-
command: pages deploy src/dist --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }} --branch ${{ github.head_ref }} --commit-dirty=true
41+
command: pages deploy dist --project-name=${{ vars.CLOUDFLARE_PROJECT_NAME }} --branch ${{ github.head_ref }} --commit-dirty=true
4242

4343
- name: Add deployment comment
4444
uses: thollander/actions-comment-pull-request@v3

src/graph_spectrum_calc.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,6 @@ GraphSpectrumCalc._getFlightSamplesFreqVsX = function(vsFieldNames, minValue = I
490490
console.log("Adjusted FreqVsX range due to invalid calculation: min=%f, max=%f", minValue, maxValue);
491491
}
492492

493-
494493
return {
495494
samples : samples,
496495
vsValues : vsValues,
@@ -527,8 +526,8 @@ GraphSpectrumCalc._getFlightSamplesPidErrorVsSetpoint = function(axisIndex) {
527526
}
528527

529528
return {
530-
piderror: piderror.slice(0, samplesCount),
531-
setpoint: setpoint.slice(0, samplesCount),
529+
piderror,
530+
setpoint,
532531
maxSetpoint,
533532
count: samplesCount,
534533
};

0 commit comments

Comments
 (0)