From b893f0ffce8f3b9e172259db6a8eafba7aafa5ce Mon Sep 17 00:00:00 2001 From: Ashish Acharya Date: Fri, 16 Jun 2023 14:08:50 -0500 Subject: [PATCH] Update error message --- sde_indexing_helper/static/js/candidate_url_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sde_indexing_helper/static/js/candidate_url_list.js b/sde_indexing_helper/static/js/candidate_url_list.js index d76ae53d..85334332 100644 --- a/sde_indexing_helper/static/js/candidate_url_list.js +++ b/sde_indexing_helper/static/js/candidate_url_list.js @@ -396,7 +396,7 @@ function postVisited(url) { function deletePattern(url, data_type, url_type=null, candidate_urls_count=null) { if (url_type === MULTI_URL_PATTERN) { - var confirmDelete = confirm(`YOU ARE ATTEMPTING TO DELETE A MULTI-URL PATTERN. THIS WILL DELETE ${candidate_urls_count} TITLE PATTERNS. Are you sure you want to do this? Currently there is no way to delete a single URL from a Multi-URL pattern`); + var confirmDelete = confirm(`YOU ARE ATTEMPTING TO DELETE A MULTI-URL PATTERN. THIS WILL AFFECT ${candidate_urls_count} URLs. \n\nAre you sure you want to do this? Currently there is no way to delete a single URL from a Multi-URL pattern`); } else { var confirmDelete = confirm(`Are you sure you want to delete this ${data_type}?`); }