Skip to content

Commit

Permalink
fix bug of invalid column title instead of name
Browse files Browse the repository at this point in the history
  • Loading branch information
bahram1249 committed Jun 27, 2024
1 parent 48b35b8 commit b172af3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ProductCommentService {
])
.include([
{
attributes: ['id', 'title'],
attributes: ['id', 'name'],
model: ECProductCommentStatus,
as: 'status',
required: false,
Expand Down Expand Up @@ -123,7 +123,7 @@ export class ProductCommentService {
])
.include([
{
attributes: ['id', 'title'],
attributes: ['id', 'name'],
model: ECProductCommentStatus,
as: 'status',
required: false,
Expand Down

0 comments on commit b172af3

Please sign in to comment.