Skip to content

Commit

Permalink
refactor: update donation list table modal content descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaHungDinh committed Dec 16, 2024
1 parent cb58aec commit 1102039
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const donationFormsBulkActions: Array<BulkActionsConfig> = [
},
confirm: (selected, names) => (
<>
<p>Donation forms to be edited:</p>
<p>{__(' Below are the donation forms to be edited.', 'give')}</p>
<ul role="document" tabIndex={0}>
{selected.map((id, index) => (
<li key={id}>
Expand Down Expand Up @@ -243,7 +243,7 @@ const donationFormsBulkActions: Array<BulkActionsConfig> = [
action: async (selected) => await API.fetchWithArgs('/trash', {ids: selected.join(',')}, 'DELETE'),
confirm: (selected, names) => (
<div>
<p>{__('Really trash the following donation forms?', 'give')}</p>
<p>{__('Are you sure you want to trash the following donation forms?', 'give')}</p>
<ul role="document" tabIndex={0}>
{selected.map((id, index) => (
<li key={id}>
Expand Down

0 comments on commit 1102039

Please sign in to comment.