Commit 7327381768f282c1dfca6b811802a9ad6feab8bf
1 parent
0c84d2df
Exists in
master
and in
8 other branches
Fix access to article content
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/pages/article/article.html
@@ -16,9 +16,9 @@ | @@ -16,9 +16,9 @@ | ||
16 | <div ng-if="pageArticle.article"> | 16 | <div ng-if="pageArticle.article"> |
17 | <article> | 17 | <article> |
18 | <header> | 18 | <header> |
19 | - <h1>{{::pageArticle.pageArticle.title}}</h1> | 19 | + <h1>{{::pageArticle.article.title}}</h1> |
20 | </header> | 20 | </header> |
21 | - <section ng-bind-html="pageArticle.pageArticle.body"></section> | 21 | + <section ng-bind-html="pageArticle.article.body"></section> |
22 | </article> | 22 | </article> |
23 | </div> | 23 | </div> |
24 | </div> | 24 | </div> |