Browse Source
Merge pull request #21173 from abpframework/fahri/docError
fixed document render error issue-5102
pull/21186/head
oykuermann
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
2 deletions
-
docs/en/framework/ui/angular/list-service.md
|
|
|
@ -177,7 +177,7 @@ export class BooksComponent { |
|
|
|
} |
|
|
|
} |
|
|
|
``` |
|
|
|
|
|
|
|
{%{ |
|
|
|
```html |
|
|
|
<div class="card"> |
|
|
|
<div class="card-header"> |
|
|
|
@ -206,7 +206,6 @@ export class BooksComponent { |
|
|
|
<th>Name</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
|
|
|
|
<tbody> |
|
|
|
@for (book of items; track book.id) { |
|
|
|
<tr> |
|
|
|
@ -218,6 +217,8 @@ export class BooksComponent { |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
``` |
|
|
|
}%} |
|
|
|
|
|
|
|
|
|
|
|
## How to Refresh Table on Create/Update/Delete |
|
|
|
|
|
|
|
|