mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Initial version of a "copy to web project" action
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5387 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -111,7 +111,12 @@ public class RunActionWizard extends BaseActionWizard
|
||||
this.actions = new ArrayList<SelectItem>();
|
||||
for (ActionDefinition ruleActionDef : ruleActions)
|
||||
{
|
||||
this.actions.add(new SelectItem(ruleActionDef.getName(), ruleActionDef.getTitle()));
|
||||
String title = ruleActionDef.getTitle();
|
||||
if (title == null || title.length() == 0)
|
||||
{
|
||||
title = ruleActionDef.getName();
|
||||
}
|
||||
this.actions.add(new SelectItem(ruleActionDef.getName(), title));
|
||||
}
|
||||
|
||||
// make sure the list is sorted by the label
|
||||
|
Reference in New Issue
Block a user