Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toririm committed Oct 22, 2024
1 parent c54838e commit ed08c53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/models/order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,9 @@ export class OrderEntity implements Order {
}

addComment(author: Author, text: string) {
if (text === "") {
return;
}
this._comments.push({ author, text });
}

Expand Down

0 comments on commit ed08c53

Please sign in to comment.