Skip to content

Commit

Permalink
Fixed #14109 - RowExpandDoc | Fixed wrong object property
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Nov 14, 2023
1 parent 7216049 commit 2bad470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/showcase/doc/table/rowexpanddoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import { ProductService } from '../../service/productservice';
<tr>
<td>{{ order.id }}</td>
<td>{{ order.customer }}</td>
<td>{{ order.id }}</td>
<td>{{ order.date }}</td>
<td>{{ order.amount | currency : 'USD' }}</td>
<td>
<p-tag [value]="order.status" [severity]="getStatusSeverity(order.status)"></p-tag>
Expand Down Expand Up @@ -170,7 +170,7 @@ export class RowExpandDoc implements OnInit {
<tr>
<td>{{ order.id }}</td>
<td>{{ order.customer }}</td>
<td>{{ order.id }}</td>
<td>{{ order.date }}</td>
<td>{{ order.amount | currency: 'USD' }}</td>
<td>
<p-tag [value]="order.status" [severity]="getStatusSeverity(order.status)"></p-tag>
Expand Down Expand Up @@ -237,7 +237,7 @@ export class RowExpandDoc implements OnInit {
<tr>
<td>{{ order.id }}</td>
<td>{{ order.customer }}</td>
<td>{{ order.id }}</td>
<td>{{ order.date }}</td>
<td>{{ order.amount | currency: 'USD' }}</td>
<td>
<p-tag [value]="order.status" [severity]="getStatusSeverity(order.status)"></p-tag>
Expand Down

0 comments on commit 2bad470

Please sign in to comment.