diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 48ec79055e5..cf591bf45f1 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,9 +4,8 @@ contact_links: url: https://jira.mongodb.org/ about: Report a bug to the COMPASS project in Jira. - name: Feature Request - url: https://feedback.mongodb.com/forums/924283-compass + url: https://feedback.mongodb.com/ about: Request a new feature or enhancement via the MongoDB Feedback Engine. - name: General Questions and Inquiries url: https://www.mongodb.com/community/forums/tags/c/data/developer-tools/49/compass about: Visit our forums for public community discussion and collaboration. - diff --git a/README.md b/README.md index 3e8ef820546..1e79467e038 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ For contributing, please refer to [CONTRIBUTING.md](CONTRIBUTING.md) For issues, please create a ticket in our [JIRA Project](https://jira.mongodb.org/browse/COMPASS). -Is there anything else you’d like to see in Compass? Let us know by submitting suggestions in out [feedback forum](https://feedback.mongodb.com/forums/924283-compass). +Is there anything else you’d like to see in Compass? Let us know by submitting suggestions in out [feedback forum](https://feedback.mongodb.com/). ## Packages Overview diff --git a/packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx b/packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx index 5a56a848bb0..43ea0f78580 100644 --- a/packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx +++ b/packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { css, Icon, Link, spacing } from '@mongodb-js/compass-components'; -const FEEDBACK_URL = 'https://feedback.mongodb.com/forums/924283-compass'; +const FEEDBACK_URL = 'https://feedback.mongodb.com/'; const linkContainerStyles = css({ paddingTop: spacing[1600], diff --git a/packages/compass/README.md b/packages/compass/README.md index 89accf51c27..d52e6f2dfd0 100644 --- a/packages/compass/README.md +++ b/packages/compass/README.md @@ -67,7 +67,7 @@ For contributing, please refer to Is there anything else you’d like to see in Compass? Let us know by submitting suggestions in out [feedback -forum](https://feedback.mongodb.com/forums/924283-compass). +forum](https://feedback.mongodb.com/). # License diff --git a/packages/compass/src/main/menu.ts b/packages/compass/src/main/menu.ts index 6cffaad0022..e3e3662b284 100644 --- a/packages/compass/src/main/menu.ts +++ b/packages/compass/src/main/menu.ts @@ -254,9 +254,7 @@ function feedbackForumLink(): MenuItemConstructorOptions { return { label: `&Suggest a Feature`, click() { - void shell.openExternal( - 'https://feedback.mongodb.com/forums/924283-compass' - ); + void shell.openExternal('https://feedback.mongodb.com/'); }, }; }