3815 fix saving/restoring of selected node to always be same node

This commit is contained in:
William Schaefer 2018-05-14 12:50:30 -04:00
parent 43a313253f
commit 25e5d77ca1

View File

@ -128,8 +128,8 @@ final class AutoIngestJobsNode extends AbstractNode {
super(Children.LEAF);
jobStatus = status;
autoIngestJob = job;
setName(autoIngestJob.getManifest().getCaseName());
setDisplayName(autoIngestJob.getManifest().getCaseName());
setName(autoIngestJob.toString()); //alows job to be uniquely found by name since it will involve a hash of the AutoIngestJob
setDisplayName(autoIngestJob.getManifest().getCaseName()); //displays user friendly case name as name
}
/**