Skip to content

Commit

Permalink
Merge branch 'pu/cw/fixTimesheetEdit' into 'main'
Browse files Browse the repository at this point in the history
fix(Timetracker) edit dialog does not close

See merge request tine20/tine20!6649
  • Loading branch information
corneliusweiss committed Feb 27, 2025
2 parents 67f33a9 + 6ba66cd commit 0a953ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tine20/Timetracker/js/TimesheetEditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Tine.Timetracker.TimesheetEditDialog = Ext.extend(Tine.widgets.dialog.EditDialog
},

disableClearedFields: function(disable) {
this.getForm().findField(this.useInvoice ? 'invoice_id': 'billed_in').setDisabled(disable);
this.getForm().findField(this.useInvoice ? 'invoice_id': 'billed_in')?.setDisabled(disable);
},

onDurationChange: function() {
Expand Down

0 comments on commit 0a953ce

Please sign in to comment.