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

fix breaking testModify jsp #1328

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/main/webapp/pages/testConfiguration/testModify.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
<%@ page import="org.openelisglobal.internationalization.MessageUtil"%>
<%@ page import="org.openelisglobal.common.util.Versioning"%>
<%@ page
import="org.openelisglobal.common.util.DateUtil"%>
import="org.openelisglobal.common.util.ConfigurationProperties"%>
<%@ page
import="org.openelisglobal.common.util.ConfigurationProperties.Property"%>
<%@ page
import="org.openelisglobal.typeoftestresult.service.TypeOfTestResultServiceImpl"%>
<%@ page
Expand Down Expand Up @@ -38,7 +40,7 @@
--%>

<%
String locale = SpringContext.getBean(DefaultConfigurationProperties.class).getPropertyValue(Property.DEFAULT_LANG_LOCALE);
String locale = ConfigurationProperties.getInstance().getPropertyValue(Property.DEFAULT_LANG_LOCALE);
%>
<%--Do not add jquery.ui.js, it will break the sorting --%>
<script type="text/javascript"
Expand Down
Loading