Skip to content

Commit

Permalink
Correct DOM nesting
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-jeckels committed Dec 20, 2023
1 parent 2e41ab9 commit e77c2af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lincs/src/org/labkey/lincs/LincsController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,8 @@ public ModelAndView getView(LincsPspJobForm form, BindException errors)
view.addView(new HtmlView(
DOM.P(
DOM.P("Status for job: " + pspJob.getId() +", PSP job Id: " + pspJob.getPspJobId() + ", Run Id: " + pspJob.getRunId()),
DOM.BR("JSON Output:"),
"JSON Output:",
DOM.BR(),
DOM.P(DOM.PRE(jsonStatus)))));
view.setTitle("PSP job status");
view.setFrame(WebPartView.FrameType.PORTAL);
Expand Down

0 comments on commit e77c2af

Please sign in to comment.