Skip to content

Commit

Permalink
Move inlineViewDesigner.js
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-adam committed Jun 13, 2024
1 parent 266c836 commit fa3cdba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void populateButtonBar(ViewContext context, ButtonBar bar, DataView view,
public void renderHeader(HttpServletRequest request, HttpServletResponse response) throws Exception
{
JspView<ViewContext> v = new JspView<>("/org/labkey/ms2extensions/runGridFilters.jsp");
v.addClientDependencies(Collections.singleton(ClientDependency.fromPath("/MS2/inlineViewDesigner.js")));
v.addClientDependencies(Collections.singleton(ClientDependency.fromPath("/protein/inlineViewDesigner.js")));
v.render(request, response);

response.getWriter().print("<p/>\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public RunGridWebPart(final ViewContext viewContext)
setTitle("MS2 Runs With Peptide Counts");

JspView<ViewContext> v = new JspView<>("/org/labkey/ms2extensions/runGridFilters.jsp", viewContext);
addClientDependencies(Collections.singleton(ClientDependency.fromPath("/MS2/inlineViewDesigner.js")));
addClientDependencies(Collections.singleton(ClientDependency.fromPath("/protein/inlineViewDesigner.js")));
addView(v);

UserSchema ms2Schema = MS2Service.get().createSchema(viewContext.getUser(), viewContext.getContainer());
Expand Down

0 comments on commit fa3cdba

Please sign in to comment.