You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/03/30 15:46:27 UTC

[syncope] 01/03: [SYNCOPE-1465] Console support

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 592c886a3ea54e82782c8c5847a011b88e144ae2
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Mar 30 17:23:56 2020 +0200

    [SYNCOPE-1465] Console support
---
 .../apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
index d22e34a..dc435f3 100644
--- a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
+++ b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
@@ -104,6 +104,9 @@ public abstract class ExecutionsDirectoryPanel
         columns.add(new DatePropertyColumn<>(new StringResourceModel("end", this), "end", "end"));
 
         columns.add(new PropertyColumn<>(new StringResourceModel("status", this), "status", "status"));
+
+        columns.add(new PropertyColumn<>(new StringResourceModel("executor", this), "executor", "executor"));
+
         return columns;
     }