From 706588d7dd726e196cb0b5530c16a6ddff69cc7d Mon Sep 17 00:00:00 2001 From: Gerard Date: Thu, 29 Nov 2018 16:38:54 +0100 Subject: [PATCH] added filter to make more readable the log component --- client/core/src/components/log/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/core/src/components/log/index.html b/client/core/src/components/log/index.html index 925034653..b88504d60 100644 --- a/client/core/src/components/log/index.html +++ b/client/core/src/components/log/index.html @@ -21,19 +21,19 @@
Changed by: - {{::log.user.name}} + {{::log.user.name | dashIfEmpty}}
Model: - {{::log.changedModel}} + {{::log.changedModel | dashIfEmpty}}
Action: - {{::$ctrl.actionsText[log.action]}} + {{::$ctrl.actionsText[log.action] | dashIfEmpty}}
Name: - {{::log.changedModelValue}} + {{::log.changedModelValue | dashIfEmpty}}