Skip to content

Commit

Permalink
Remove check for condition UUID
Browse files Browse the repository at this point in the history
Doesn't make sense for new conditions
  • Loading branch information
trslater committed Dec 11, 2024
1 parent 63e1e5e commit b1c4982
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,6 @@ export class DecisionConditionComponent implements OnInit, OnChanges {
})
.beforeClosed()
.subscribe(async (dates: DueDate[]) => {
if (!this.uuid) {
return;
}
this.dates = dates.map((date) => ({
uuid: date.uuid,
date: date.date?.toDate().getTime(),
Expand Down

0 comments on commit b1c4982

Please sign in to comment.