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

Commit ed6d801

Browse files
committed
fix projectOverview issue
1 parent 36e693e commit ed6d801

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

app/src/web/scripts/rightSidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var updateContestsTable = function (contestsData, emptyMessage) {
3838
+ "'></span></td><td class='leftAlign'></td><td><img/></td></tr>");
3939

4040
$("td.leftAlign", newRow).html($("<a></a>").attr('href',
41-
ctx + urlPart + item.id).text(item.name).addClass('contestLink').attr('target', '_blank'));
41+
ctx + urlPart + item.id).text(item.name || '').addClass('contestLink').attr('target', '_blank'));
4242

4343
switch (item.statusShortName) {
4444
case "Running":

docker/tc-informixdb/alter_tc_db.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ echo "INSERT INTO project(project_id,project_status_id,project_category_id,creat
6262
echo "INSERT INTO project(project_id,project_status_id,project_category_id,create_user,create_date,modify_user,modify_date,tc_direct_project_id,project_sub_category_id) VALUES (30020424,3,16,'22677383','2008-11-14 14:00:00.000','22677383','2014-08-20 00:00:00.000',337,NULL)" | dbaccess tcs_catalog > /dev/null 2>&1
6363
echo "INSERT INTO project(project_id,project_status_id,project_category_id,create_user,create_date,modify_user,modify_date,tc_direct_project_id,project_sub_category_id) VALUES (30021084,7,16,'22677383','2008-11-14 14:00:00.000','22677383','2014-08-20 00:00:00.000',337,NULL)" | dbaccess tcs_catalog > /dev/null 2>&1
6464
echo "INSERT INTO project(project_id,project_status_id,project_category_id,create_user,create_date,modify_user,modify_date,tc_direct_project_id,project_sub_category_id) VALUES (30020801,3,21,'251280','2008-07-17 14:00:00.000','251280','2014-08-20 00:00:00.000',24,NULL)" | dbaccess tcs_catalog > /dev/null 2>&1
65+
66+
echo "update project set tc_direct_project_id=535 where project_id > 800 and project_id <900" | dbaccess tcs_catalog > /dev/null 2>&1
6567
myfatal $? "ALTER TABLE FAILED"
6668

6769
onmode -ky

token.properties.docker

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ excelFile=/root/jboss-4.2.3.GA/server/default/conf/rev_sample.xlsx
7878
####################
7979
# cache.properties #
8080
####################
81-
host_url=tc-cache:6379
81+
host_url=localhost:1099
8282
#cache.primary=tc-cache:8501
8383
cache_client_class=com.topcoder.web.common.cache.RedisCacheClient
8484
redis_uri=redis://tc-cache:6379
@@ -348,4 +348,5 @@ trialBillingId =
348348
defaultGroupIdForTrial =
349349

350350
# The Topcoder Connect Url to which the projects creation will redirect
351-
TopcoderConnectUrl=https://connect.topcoder-dev.com
351+
TopcoderConnectUrl=https://connect.topcoder-dev.com
352+
TopcoderNewAuthUrl=https://accounts-auth0.topcoder-dev.com

0 commit comments

Comments
 (0)