We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1178c8 commit 1866f7aCopy full SHA for 1866f7a
sde_indexing_helper/static/js/delta_url_list.js
@@ -2310,7 +2310,8 @@ function handleShowAffectedURLsListButtonClick() {
2310
const urlCount = $(this).prev('.urlCount').text().trim();
2311
2312
// Update modal title and pattern info
2313
- $("#affectedURLsModalTitle").text(`Affected ${urlType} URLs`);
+ const capitalize = str => str[0].toUpperCase() + str.slice(1);
2314
+ $("#affectedURLsModalTitle").text(`Affected ${capitalize(urlType)} URLs`);
2315
$("#patternInfo").text(`
2316
${urlCount} affected URL${urlCount === '1' ? '' : 's'} for ${patternType} pattern:
2317
`).append($('<span>').css('color', '#65B1EF').text(patternName));
0 commit comments