From a370a4951f9f8b2aca4dfb4ef6cfd883db825d13 Mon Sep 17 00:00:00 2001 From: Boone B Gorges Date: Thu, 2 Nov 2023 09:54:17 -0500 Subject: [PATCH] Add link text for Group Contact removal. See #3265. --- wp-content/plugins/wds-citytech/assets/js/group-contact.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/plugins/wds-citytech/assets/js/group-contact.js b/wp-content/plugins/wds-citytech/assets/js/group-contact.js index da821ee318..6fe67d4739 100644 --- a/wp-content/plugins/wds-citytech/assets/js/group-contact.js +++ b/wp-content/plugins/wds-citytech/assets/js/group-contact.js @@ -46,8 +46,8 @@ window.wp = window.wp || {}; function create_list_item( nicename, label ) { var li = ''; - li = '
  • ' + label + '
  • '; - li = '
  • ' + label + '
  • '; + li = '
  • Remove Contact ' + label + '
  • '; + li = '
  • ' + label + ' Remove Contact
  • '; $( '#group-contact-list' ).append( li ); } }