Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 721723e

Browse files
committed
quick fix
1 parent 76fe9bb commit 721723e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/web/WEB-INF/includes/contest/editTab.jsp

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,18 +119,18 @@
119119
<td class="sec_tab_type"><strong>: <span id="rProjectMilestone"></span></strong></td>
120120
</tr>
121121
<tr></tr>
122+
<%--
122123
<tr>
123124
<td class="first_tab_type"><strong>Product</strong></td>
124125
<td class="sec_tab_type"><strong>: <span id="rProduct"></span></strong></td>
125126
</tr>
126127
<tr></tr>
127-
<%--
128+
--%>
128129
<tr>
129130
<td class="first_tab_type"><strong>Copilot</strong></td>
130131
<td class="sec_tab_type"><strong>: <span id="rCopilots"></span></strong></td>
131132
</tr>
132133
<tr></tr>
133-
--%>
134134
<tr class="privateProjectRow hide">
135135
<td class="first_tab_type" title="Run this as an assigned task. Registration will not be open to anyone else, but it will still be publically listed."><strong>Task</strong></td>
136136
<td class="sec_tab_type"><strong>: <span id="rPrivateProject"></span></strong></td>

src/web/scripts/launch/contestDetailSoftware.js

+2
Original file line numberDiff line numberDiff line change
@@ -1223,10 +1223,12 @@ function populateTypeSection() {
12231223
$('#chkboxCCA').attr('checked', mainWidget.softwareCompetition.projectHeader.isLccchecked());
12241224

12251225
//product
1226+
/*
12261227
if (mainWidget.softwareCompetition.projectHeader.properties[PRODUCT_SKU] != null){
12271228
$("#rProduct").text(mainWidget.softwareCompetition.projectHeader.properties[PRODUCT_SKU]);
12281229
$("#productName").val(mainWidget.softwareCompetition.projectHeader.properties[PRODUCT_SKU]);
12291230
}
1231+
*/
12301232
$('#rContestTypeName').text($("#contestTypes option[value=" + mainWidget.competitionType + mainWidget.softwareCompetition.projectHeader.projectCategory.id +"]").text());
12311233

12321234
loadReviewScorecardList(null);

src/web/scripts/launch/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1039,13 +1039,13 @@ function saveAsDraftRequest() {
10391039

10401040
mainWidget.softwareCompetition.projectHeader.properties['Review Type'] = reviewType;
10411041
}
1042-
1042+
/*
10431043
if ($("#productName").val().trim().length > 0) {
10441044
mainWidget.softwareCompetition.projectHeader.properties[PRODUCT_SKU] = $("#productName").val().trim();
10451045
}else{
10461046
mainWidget.softwareCompetition.projectHeader.properties[PRODUCT_SKU] = "";
10471047
}
1048-
1048+
*/
10491049

10501050
var request;
10511051

0 commit comments

Comments
 (0)