mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- More workflow features
- Added single select capability to generic picker - Fixed NPE in client (create rule wizard) due to missing messages git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3606 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -196,7 +196,12 @@ public abstract class BaseActionWizard extends BaseWizardBean
|
||||
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