diff options
author | Mark Powers <markppowers0@gmail.com> | 2019-02-02 10:51:10 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2019-02-02 10:51:10 -0500 |
commit | c21eba4246be5c9831705a86592b45c70648c167 (patch) | |
tree | 0e4470f574ab77287a1ad40f196b1643dd0b1c7d /src/html/bread.html | |
parent | d1162d1bd12cbb3eae9889768adbbb293852c066 (diff) |
Add admin panel
Diffstat (limited to 'src/html/bread.html')
-rw-r--r-- | src/html/bread.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/bread.html b/src/html/bread.html index e6eeb47..1ce1478 100644 --- a/src/html/bread.html +++ b/src/html/bread.html @@ -18,7 +18,7 @@ }, created() { fetch(new Request('/posts/bread')).then(response => response.json()) - .then(response => this.posts = response.data); + .then(response => this.posts = response); } }); } |