12345678910111213141516171819202122232425 |
- import {JsonFormObject} from 'sentry/components/forms/types';
- export const route = '/settings/:orgId/projects/:projectId/user-feedback/';
- const formGroups: JsonFormObject[] = [
- {
-
- title: 'Settings',
- fields: [
- {
- name: 'feedback:branding',
- type: 'boolean',
-
- label: 'Show Sentry Branding',
- placeholder: 'e.g. secondary@example.com',
- help: 'Show "powered by Sentry within the feedback dialog. We appreciate you helping get the word out about Sentry! <3',
- getData: data => ({options: data}),
- },
- ],
- },
- ];
- export default formGroups;
|