Skip to content

Commit

Permalink
fix(Timetracker) edit dialog does not close
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusweiss committed Feb 27, 2025
1 parent 67f33a9 commit 6ba66cd
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 6ba66cd

Please sign in to comment.