From 8a9a539e3cf258264eeaf339b020017b65c4e900 Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Tue, 17 Oct 2023 16:00:56 +0200 Subject: [PATCH] linting --- frontend/src/components/TransactionRows/Name.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/TransactionRows/Name.vue b/frontend/src/components/TransactionRows/Name.vue index b2e0830fc..2f495756c 100644 --- a/frontend/src/components/TransactionRows/Name.vue +++ b/frontend/src/components/TransactionRows/Name.vue @@ -50,7 +50,9 @@ export default { ? this.linkedUser.alias ? this.linkedUser.alias + (this.linkedUser.communityName ? ' / ' + this.linkedUser.communityName : '') - : this.linkedUser.firstName + ' ' + this.linkedUser.lastName + + : this.linkedUser.firstName + + ' ' + + this.linkedUser.lastName + (this.linkedUser.communityName ? ' / ' + this.linkedUser.communityName : '') : this.text },