Revert "Add feedback form (#1967)"

This reverts commit 4407dc6d8a.

# Conflicts:
#	scm-ui/ui-api/src/config.ts
#	scm-ui/ui-api/src/index.ts
#	scm-ui/ui-webapp/public/locales/en/commons.json
#	scm-ui/ui-webapp/src/containers/App.tsx
#	scm-ui/ui-webapp/src/containers/Feedback.tsx
This commit is contained in:
Konstantin Schaper
2022-09-27 09:37:38 +02:00
committed by Konstantin Schaper
parent 9f5a0eeec1
commit 74702591ed
13 changed files with 1 additions and 213 deletions

View File

@@ -42,7 +42,6 @@ type Props = {
anonymousMode: AnonymousMode;
skipFailedAuthenticators: boolean;
alertsUrl: string;
feedbackUrl: string;
releaseFeedUrl: string;
mailDomainName: string;
enabledXsrfProtection: boolean;
@@ -60,7 +59,6 @@ const GeneralSettings: FC<Props> = ({
loginInfoUrl,
anonymousMode,
alertsUrl,
feedbackUrl,
releaseFeedUrl,
mailDomainName,
enabledXsrfProtection,
@@ -96,9 +94,6 @@ const GeneralSettings: FC<Props> = ({
const handleAlertsUrlChange = (value: string) => {
onChange(true, value, "alertsUrl");
};
const handleFeedbackUrlChange = (value: string) => {
onChange(true, value, "feedbackUrl");
};
const handleReleaseFeedUrlChange = (value: string) => {
onChange(true, value, "releaseFeedUrl");
};
@@ -236,17 +231,6 @@ const GeneralSettings: FC<Props> = ({
/>
</div>
</div>
<div className="columns">
<div className="column is-full">
<InputField
label={t("general-settings.feedback-url")}
onChange={handleFeedbackUrlChange}
value={feedbackUrl}
disabled={!hasUpdatePermission}
helpText={t("help.feedbackUrlHelpText")}
/>
</div>
</div>
<div className="columns">
<div className="column is-full">
<MemberNameTagGroup