Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions static/app/views/seerExplorer/panelContainers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,8 @@ function PanelContainers({
onClick={onUnminimize}
>
<Flex direction="column" align="center" gap="lg">
<IconSeer variant="waiting" size="lg" color="purple400" />
<Text variant="muted">
Press Tab ⇥ or click to continue with Seer
</Text>
<IconSeer variant="waiting" size="lg" />
<Text>Press Tab ⇥ or click to continue with Seer</Text>
</Flex>
</MinimizedOverlay>
)}
Expand Down
3 changes: 2 additions & 1 deletion static/app/views/seerExplorer/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ export function getToolsStringFromBlock(block: Block): string[] {
function linkifyIssueShortIds(text: string): string {
// Pattern matches: PROJECT_SLUG-SHORT_ID (uppercase only, case-sensitive)
// Requires at least 2 chars before hyphen and 1+ chars after
const shortIdPattern = /\b([A-Z0-9_]{2,}-[A-Z0-9]+)\b/g;
// First segment must contain at least one uppercase letter (all letters must be uppercase)
const shortIdPattern = /\b((?:[A-Z][A-Z0-9_]{1,}|[0-9_]+[A-Z][A-Z0-9_]*)-[A-Z0-9]+)\b/g;

// Track positions that should be excluded (inside code blocks, links, or URLs)
const excludedRanges: Array<{end: number; start: number}> = [];
Expand Down
Loading