Skip to content

Commit

Permalink
Fixed #364 - Sim Log Browser - Inspect (request |response) does nothing.
Browse files Browse the repository at this point in the history
  • Loading branch information
iheos committed Apr 18, 2018
1 parent 9766d6d commit 984a5a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,8 @@ void showHistory() {
}
*/

QueryOrigin queryOrigin = new QueryOrigin(res.logId.getId().toString(), stepResult.section, stepResult.stepName);
String testName = (res.logId != null) ? res.logId.getId() : "";
QueryOrigin queryOrigin = new QueryOrigin(testName, stepResult.section, stepResult.stepName);
new ListingDisplay(this, dm, new TreeThing(stepTreeItem), res.logId, queryOrigin).listing();

if (data.enableActions && stepResult.toBeRetrieved.size() > 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public void start(final AcceptsOneWidget acceptsOneWidget, final EventBus eventB
view = Injector.INSTANCE.getInspectorView();
displayer = Injector.INSTANCE.getToolkitAppDisplayer();
assert(presenter != null);
assert(displayer != null);

presenter.setTitle("ResultInspector");
presenter.setDataModel(place.getResults());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ boolean isTableCellHeightAvailable() {
},200);
}

private void setData() {
private void setData() {
GWT.log("In setData");

GWT.log("result list size is: " + results.size());
Expand Down

0 comments on commit 984a5a8

Please sign in to comment.