From b4c1c0c80360f0180b0bc4bf0d032e5a924cf2bc Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 16 Nov 2023 14:11:41 +0300 Subject: [PATCH] Fix series settings --- apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js index d137793d9c..aa538016a3 100644 --- a/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js +++ b/apps/spreadsheeteditor/main/app/view/FillSeriesDialog.js @@ -300,7 +300,7 @@ define([ if (this.isStepChanged) { var value = this.inputStep.getValue(); (typeof value === 'string') && (value = value.replace(',','.')); - this._changedProps.asc_setStepValue(value!=='' ? parseFloat(value) : 1); + this._changedProps.asc_setStepValue(value!=='' ? parseFloat(value) : null); } if (this.isStopChanged) { var value = this.inputStop.getValue();