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

Point issue link to the new page 'issue/new/choose' #49616

Merged
merged 1 commit into from
Oct 29, 2019
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ _Note: The version numbers below are only examples, meant to illustrate the rela

## Questions? Problems? Suggestions?

- If you've found a bug or want to request a feature, please create a [GitHub Issue](https://github.com/elastic/kibana/issues/new).
Please check to make sure someone else hasn't already created an issue for the same topic.
- If you've found a bug or want to request a feature, please create a [GitHub Issue](https://github.com/elastic/kibana/issues/new/choose).
Please check to make sure someone else hasn't already created an issue for the same topic.
- Need help using Kibana? Ask away on our [Kibana Discuss Forum](https://discuss.elastic.co/c/kibana) and a fellow community member or
Elastic engineer will be glad to help you out.
13 changes: 7 additions & 6 deletions src/legacy/ui/public/vis/default_feedback_message.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@

import { i18n } from '@kbn/i18n';

export const defaultFeedbackMessage = i18n.translate('common.ui.vis.defaultFeedbackMessage',
{
defaultMessage: 'Have feedback? Please create an issue in {link}.',
values: { link: '<a href="https://github.com/elastic/kibana/issues/new" rel="noopener noreferrer" target="_blank">GitHub</a>' }
}
);
export const defaultFeedbackMessage = i18n.translate('common.ui.vis.defaultFeedbackMessage', {
defaultMessage: 'Have feedback? Please create an issue in {link}.',
values: {
link:
'<a href="https://github.com/elastic/kibana/issues/new/choose" rel="noopener noreferrer" target="_blank">GitHub</a>',
},
});
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/lens/public/help_menu_util.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function HelpMenu() {
<EuiSpacer />
<EuiText size="s">
<EuiIcon type="logoGithub" color="primary" /> &nbsp;
<EuiLink href="https://github.com/elastic/kibana/issues/new" target="_blank">
<EuiLink href="https://github.com/elastic/kibana/issues/new/choose" target="_blank">
{i18n.translate('xpack.lens.helpMenu.feedbackLinkText', {
defaultMessage: 'Provide feedback for the Lens application',
})}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export function WelcomeContent() {
values={{
githubLink: (
<EuiLink
href="https://github.com/elastic/kibana/issues/new"
href="https://github.com/elastic/kibana/issues/new/choose"
target="_blank"
>
GitHub
Expand Down