Skip to content

Commit 37f34fa

Browse files
authored
chore: update feedback link to generic feedback forum to setup for redirect COMPASS-9717 (#7209)
1 parent 2f4577b commit 37f34fa

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ contact_links:
44
url: https://jira.mongodb.org/
55
about: Report a bug to the COMPASS project in Jira.
66
- name: Feature Request
7-
url: https://feedback.mongodb.com/forums/924283-compass
7+
url: https://feedback.mongodb.com/
88
about: Request a new feature or enhancement via the MongoDB Feedback Engine.
99
- name: General Questions and Inquiries
1010
url: https://www.mongodb.com/community/forums/tags/c/data/developer-tools/49/compass
1111
about: Visit our forums for public community discussion and collaboration.
12-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For contributing, please refer to [CONTRIBUTING.md](CONTRIBUTING.md)
1010

1111
For issues, please create a ticket in our [JIRA Project](https://jira.mongodb.org/browse/COMPASS).
1212

13-
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).
13+
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/).
1414

1515
## Packages Overview
1616

packages/compass-aggregations/src/components/aggregation-side-panel/feedback-link.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { css, Icon, Link, spacing } from '@mongodb-js/compass-components';
33

4-
const FEEDBACK_URL = 'https://feedback.mongodb.com/forums/924283-compass';
4+
const FEEDBACK_URL = 'https://feedback.mongodb.com/';
55

66
const linkContainerStyles = css({
77
paddingTop: spacing[1600],

packages/compass/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ For contributing, please refer to
6767

6868
Is there anything else you’d like to see in Compass? Let us know by submitting
6969
suggestions in out [feedback
70-
forum](https://feedback.mongodb.com/forums/924283-compass).
70+
forum](https://feedback.mongodb.com/).
7171

7272
# License
7373

packages/compass/src/main/menu.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,7 @@ function feedbackForumLink(): MenuItemConstructorOptions {
254254
return {
255255
label: `&Suggest a Feature`,
256256
click() {
257-
void shell.openExternal(
258-
'https://feedback.mongodb.com/forums/924283-compass'
259-
);
257+
void shell.openExternal('https://feedback.mongodb.com/');
260258
},
261259
};
262260
}

0 commit comments

Comments
 (0)