We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6f571 commit 9553bf0Copy full SHA for 9553bf0
packages/devextreme/js/ui/gantt/ui.gantt.dialogs.js
@@ -256,7 +256,7 @@ class TaskEditDialogInfo extends DialogInfoBase {
256
this._parameters.title = formData.title;
257
this._parameters.start = formData.start;
258
this._parameters.end = formData.end;
259
- this._parameters.progress = formData.progress * 100;
+ this._parameters.progress = Math.round(formData.progress * 100);
260
this._parameters.assigned = formData.assigned;
261
}
262
isValidated() {
0 commit comments