Skip to content

Commit

Permalink
fix: incorrect syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
WillsterJohnsonAtZenesis committed Jul 9, 2024
1 parent f90db54 commit c073cb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/class/qxl/datagrid/column/NumberColumn.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ qx.Class.define("qxl.datagrid.column.NumberColumn", {

construct() {
super();
this.setBindingOptions((widget, model) => {
converter: value => (value ? value.toFixed(2) : "");
});
this.setBindingOptions((widget, model) => ({
converter: value => (value ? value.toFixed(2) : "")
}));
}
});

0 comments on commit c073cb3

Please sign in to comment.