You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by md...@apache.org on 2017/05/05 13:49:16 UTC

syncope git commit: [SYNCOPE-1075] LastChangeDate attribute is not displayed correctly

Repository: syncope
Updated Branches:
  refs/heads/master 41be16f80 -> 018fa9771


[SYNCOPE-1075] LastChangeDate attribute is not displayed correctly


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/018fa977
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/018fa977
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/018fa977

Branch: refs/heads/master
Commit: 018fa9771adee2788be0ba3357c31cdc5da17cba
Parents: 41be16f
Author: Marco Di Sabatino Di Diodoro <ma...@tirasa.net>
Authored: Fri May 5 15:45:12 2017 +0200
Committer: Marco Di Sabatino Di Diodoro <ma...@tirasa.net>
Committed: Fri May 5 15:48:37 2017 +0200

----------------------------------------------------------------------
 .../syncope/client/console/wizards/any/AnnotatedBeanPanel.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/018fa977/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AnnotatedBeanPanel.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AnnotatedBeanPanel.java b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AnnotatedBeanPanel.java
index 9844167..66aa7b1 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AnnotatedBeanPanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AnnotatedBeanPanel.java
@@ -45,7 +45,7 @@ public class AnnotatedBeanPanel extends Panel {
         // Last change date
         // ------------------------
         add(new Label("lastChangeDate", new Model<>(sysInfoTO.getLastChangeDate() != null
-                ? SyncopeConsoleSession.get().getDateFormat().format(sysInfoTO.getCreationDate()) : "")));
+                ? SyncopeConsoleSession.get().getDateFormat().format(sysInfoTO.getLastChangeDate()) : "")));
         // ------------------------
 
         // ------------------------