Skip to content

Commit

Permalink
Fix typo in recipient (opensearch-project#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>
  • Loading branch information
cwperks authored Oct 23, 2024
1 parent 13d80a5 commit 1772628
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,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 @@ -50,7 +50,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: 11
java-version: 21

# This is a hack, but this step creates a link to the X: mounted drive, which makes the path
# short enough to work on Windows
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 1772628

Please sign in to comment.