Merge branch 'release/5.0.0'
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -1131,7 +1131,7 @@ exports.handleSortIntro = (data) => { | @@ -1131,7 +1131,7 @@ exports.handleSortIntro = (data) => { | ||
1131 | _.forEach(data.keyword, function(value) { | 1131 | _.forEach(data.keyword, function(value) { |
1132 | sortIntro.keyEntry.push({ | 1132 | sortIntro.keyEntry.push({ |
1133 | name: value.word, | 1133 | name: value.word, |
1134 | - url: value.url | 1134 | + url: value.url.replace(/(parameter_)(\d+)=(\d+)/, (match, p1, p2, p3) => `standard=${p2}_${p3}`) |
1135 | }); | 1135 | }); |
1136 | }); | 1136 | }); |
1137 | 1137 |
-
Please register or login to post a comment