Skip to content
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
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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],
Expand Down
2 changes: 1 addition & 1 deletion packages/compass/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 1 addition & 3 deletions packages/compass/src/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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/');
},
};
}
Expand Down
Loading