Skip to content

Commit

Permalink
LOCAL: fix ambiguous function call
Browse files Browse the repository at this point in the history
  • Loading branch information
holmbergius committed Dec 6, 2024
1 parent bf905c7 commit 4e1102e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/webapp/submit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import="java.util.GregorianCalendar,
org.ecocean.servlet.ServletUtilities,
org.ecocean.*,
java.util.Properties,
java.util.Properties,java.util.ArrayList,
java.util.List,
java.util.Locale" %>

Expand Down Expand Up @@ -881,7 +881,11 @@ if(CommonConfiguration.showReleaseDate(context)){
</div>

<div class="col-xs-6 col-sm-6 col-md-6 col-lg-8">
<%=LocationID.getHTMLSelector(false, null,qualifier,"locationID","locationID","form-control") %>

<%
ArrayList<String> selectedIDs=null;
%>
<%=LocationID.getHTMLSelector(false, selectedIDs,qualifier,"locationID","locationID","form-control") %>
</div>
</div>
<%
Expand Down

0 comments on commit 4e1102e

Please sign in to comment.