Skip to content

Commit ebb8ffb

Browse files
committed
id is a non-null Integer, so does not need to be quoted when passing as parameter to a JS function.
1 parent 0dfd6f0 commit ebb8ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panoramapublic/src/org/labkey/panoramapublic/query/ExperimentAnnotationsTableInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public void renderGridCellContents(RenderContext ctx, Writer out) throws IOExcep
164164
.appendTo(out);
165165
pageConfig.addHandler(spanId, "click", "viewExperimentDetails(this,"
166166
+ PageFlowUtil.jsString(container.getPath())
167-
+ ", '" + id + "', "
167+
+ ", " + id + ", "
168168
+ PageFlowUtil.jsString(detailsPage) + ")");
169169
}
170170
super.renderGridCellContents(ctx, out);

0 commit comments

Comments
 (0)