Add tagging to context menu for artifacts linked to a datasource

This commit is contained in:
Ann Priestman 2015-07-08 13:37:20 -04:00
parent 5de14bde5c
commit 8b8685097b

View File

@ -237,6 +237,12 @@ public class DataResultFilterNode extends FilterNode {
actions.add(AddBlackboardArtifactTagAction.getInstance()); actions.add(AddBlackboardArtifactTagAction.getInstance());
actions.addAll(ContextMenuExtensionPoint.getActions()); actions.addAll(ContextMenuExtensionPoint.getActions());
} }
else{
// There's no specific file associated with the artifact, but
// we can still tag the artifact itself
actions.add(null);
actions.add(AddBlackboardArtifactTagAction.getInstance());
}
return actions; return actions;
} }