Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in recipient #287

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading