Skip to content

Commit 91498f4

Browse files
feat(explore): Adds give feedback button to the Explore All Queries view (#90054)
1 parent 31d7b6c commit 91498f4

File tree

1 file changed

+7
-0
lines changed
  • static/app/views/explore/savedQueries

1 file changed

+7
-0
lines changed

static/app/views/explore/savedQueries/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import Breadcrumbs from 'sentry/components/breadcrumbs';
2+
import {ButtonBar} from 'sentry/components/core/button/buttonBar';
3+
import FeedbackWidgetButton from 'sentry/components/feedback/widget/feedbackWidgetButton';
24
import * as Layout from 'sentry/components/layouts/thirds';
35
import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
46
import {t} from 'sentry/locale';
@@ -28,6 +30,11 @@ export default function SavedQueriesView() {
2830
/>
2931
<Layout.Title>{t('All Queries')}</Layout.Title>
3032
</Layout.HeaderContent>
33+
<Layout.HeaderActions>
34+
<ButtonBar gap={1}>
35+
<FeedbackWidgetButton />
36+
</ButtonBar>
37+
</Layout.HeaderActions>
3138
</Layout.Header>
3239
<Layout.Body>
3340
<Layout.Main fullWidth>

0 commit comments

Comments
 (0)