From f85c1bcf51a7b26a73cb24a340d25126fae9ff4e Mon Sep 17 00:00:00 2001 From: Craig Perkins Date: Wed, 23 Oct 2024 13:36:11 -0400 Subject: [PATCH] [Backport 2.x] Fix typo in recipient (#287) (#289) * Fix typo in recipient (#287) * Fix typo in recipient Signed-off-by: Craig Perkins * Set java-version to 21 on main Signed-off-by: Craig Perkins --------- Signed-off-by: Craig Perkins (cherry picked from commit 1772628e63a56507e3f19c1fb250a16e9507a1e4) * Change to 11 Signed-off-by: Craig Perkins --------- Signed-off-by: Craig Perkins --- .../pages/Emails/components/tables/RecipientGroupsTable.tsx | 4 ++-- public/plugin.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/pages/Emails/components/tables/RecipientGroupsTable.tsx b/public/pages/Emails/components/tables/RecipientGroupsTable.tsx index eb3f2504..f77ecbc1 100644 --- a/public/pages/Emails/components/tables/RecipientGroupsTable.tsx +++ b/public/pages/Emails/components/tables/RecipientGroupsTable.tsx @@ -276,7 +276,7 @@ export class RecipientGroupsTable extends Component< placeholder="Search" onSearch={this.onSearchChange} />; - const createRecepientButton = + const createRecipientButton = Create recipient group ; @@ -403,7 +403,7 @@ export class RecipientGroupsTable extends Component< ), }, { - component: createRecepientButton, + component: createRecipientButton, }, ]} /> diff --git a/public/plugin.ts b/public/plugin.ts index f180e64f..6e5c812c 100644 --- a/public/plugin.ts +++ b/public/plugin.ts @@ -121,7 +121,7 @@ export class notificationsDashboardsPlugin core.application.register({ id: `email_groups`, - title: 'Email recepient groups', + title: 'Email recipient groups', order: 9090, workspaceAvailability: WorkspaceAvailability.outsideWorkspace, updater$: this.appStateUpdater,