From 0c81689fd3252c5eae331f4d7be2c30488440126 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Tue, 30 Apr 2019 22:12:16 +0400 Subject: [PATCH] align authors line --- src/main/resources/static/papers/paper-item.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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(', ') } }