diff --git a/src/main/resources/static/papers/paper-item.vue b/src/main/resources/static/papers/paper-item.vue index b261ad5..8a021ca 100644 --- a/src/main/resources/static/papers/paper-item.vue +++ b/src/main/resources/static/papers/paper-item.vue @@ -8,9 +8,13 @@ {{ paper.title }} -
- {{ author }} +
+ +
+ +
+
+ {{ author }}
@@ -27,6 +31,7 @@ this.paper.authors.forEach(function (author) { authorsResult.push(author.lastName + " " + author.firstName); }); + debugger; return authorsResult.join(', ') } }