We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fbb092 commit 9f4f4deCopy full SHA for 9f4f4de
static/app/views/explore/spans/content.tsx
@@ -121,13 +121,13 @@ function SpansTabHeader() {
121
const organization = useOrganization();
122
const {data: savedQuery} = useGetSavedQuery(id);
123
124
- const showCustomTitle =
+ const hasSavedQueryTitle =
125
defined(id) && defined(savedQuery) && savedQuery.name.length > 0;
126
127
return (
128
<Layout.Header unified>
129
<Layout.HeaderContent unified>
130
- {showCustomTitle ? (
+ {hasSavedQueryTitle ? (
131
<SentryDocumentTitle title={savedQuery.name} orgSlug={organization?.slug} />
132
) : null}
133
{title && defined(id) ? (
0 commit comments