Skip to content

Commit c5e9409

Browse files
committed
Dont escape string
1 parent dab82c2 commit c5e9409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/src/org/labkey/cluster/ClusterController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public URLHelper getSuccessURL(ForcePipelineCancelForm form)
9696

9797
public ModelAndView getConfirmView(ForcePipelineCancelForm form, BindException errors) throws Exception
9898
{
99-
return new HtmlView(HtmlString.of("This will change the status of the pipeline job with the provided ID to Cancelled. It is intended to help the situation when the normal UI leave a job in a perpetual 'Cancelling' state." +
99+
return new HtmlView(HtmlString.unsafe("This will change the status of the pipeline job with the provided ID to Cancelled. It is intended to help the situation when the normal UI leave a job in a perpetual 'Cancelling' state." +
100100
"To continue, enter a comma-delimited list of Job IDs and hit submit:<br><br>" +
101101
"<label>Enter Job ID(s): </label><input name=\"jobIds\"><br>"));
102102
}

0 commit comments

Comments
 (0)