Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webapp maintenance #674

Merged
merged 12 commits into from
Dec 1, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws Se

String process = req.getParameter("process");

resp.setContentType("application/javascript");
resp.setContentType("text/javascript");
boolean doProcess = process == null || Boolean.parseBoolean(process);

WebUIPlugin plugin = PluginController.getInstance().getWebUIPlugin(name);
Expand Down
2 changes: 1 addition & 1 deletion dicoogle/src/main/resources/webapp/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import LoginView from "./components/login/loginView";
import * as UserActions from "./actions/userActions";
import UserStore from "./stores/userStore";

import "@ungap/custom-elements-builtin";
import "@ungap/custom-elements";
import "core-js/stable";
import "bootstrap";

Expand Down
Loading