Skip to content

Commit

Permalink
Fix typo in recipient (#287)
Browse files Browse the repository at this point in the history
* Fix typo in recipient

Signed-off-by: Craig Perkins <cwperx@amazon.com>

* Set java-version to 21 on main

Signed-off-by: Craig Perkins <cwperx@amazon.com>

---------

Signed-off-by: Craig Perkins <cwperx@amazon.com>
(cherry picked from commit 1772628)
  • Loading branch information
cwperks committed Oct 23, 2024
1 parent d403a35 commit 6bf8bc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: 11
java-version: 21

- name: Check out the notifications repo
uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export class RecipientGroupsTable extends Component<
placeholder="Search"
onSearch={this.onSearchChange} />;

const createRecepientButton = <EuiSmallButton fill href={`#${ROUTES.CREATE_RECIPIENT_GROUP}`}>
const createRecipientButton = <EuiSmallButton fill href={`#${ROUTES.CREATE_RECIPIENT_GROUP}`}>
Create recipient group
</EuiSmallButton>;

Expand Down Expand Up @@ -403,7 +403,7 @@ export class RecipientGroupsTable extends Component<
),
},
{
component: createRecepientButton,
component: createRecipientButton,
},
]}
/>
Expand Down
2 changes: 1 addition & 1 deletion public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6bf8bc9

Please sign in to comment.