Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/15/11 16:01:58 (13 years ago)
Author:
ascheibe
Message:

#1709

  • tooltip now shows the name and the id of a task
  • the date is now shown on the x-axis for runs spanning multiple days
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive/3.3/HiveJobs/HiveTask.cs

    r7177 r7191  
    143143
    144144    public StateLogList StateLog {
    145       get { return new StateLogList(this.task.StateLog); }
     145      get {
     146        var list = new StateLogList(this.task.StateLog);
     147        list.ForEach(s => { s.TaskName = itemTask.Name; });
     148        return list;
     149      }
    146150    }
    147151
Note: See TracChangeset for help on using the changeset viewer.