From 8dce53e8520d978e1cecaebf172809f8796be86a Mon Sep 17 00:00:00 2001 From: tianshujie98 Date: Mon, 26 Apr 2021 14:52:16 +0800 Subject: [PATCH] * Fix bug #12332. --- module/todo/js/common.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/todo/js/common.js b/module/todo/js/common.js index 65789831af..ecff38d232 100644 --- a/module/todo/js/common.js +++ b/module/todo/js/common.js @@ -53,8 +53,12 @@ function loadList(type, id) { link = createLink('review', 'ajaxGetUserReviews', param); } + else if(type == 'feedback') + { + link = createLink('feedback', 'ajaxGetUserFeedback', param); + } - if(type == 'bug' || type == 'task' || type == 'story' || type == 'issue' || type == 'risk' || type == 'testtask' || type == 'review' ) + if(type == 'bug' || type == 'task' || type == 'story' || type == 'issue' || type == 'risk' || type == 'testtask' || type == 'review' || type == 'feedback') { $.get(link, function(data, status) {