Skip to content

Commit

Permalink
fix: better stack trace colors (#26393)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored Nov 25, 2024
1 parent 94c2b0a commit 317fe63
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/lib/components/Errors/ErrorDisplay.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
.LemonCollapsePanel__header {
min-height: 1.875rem !important;
padding: 0 !important;
background-color: var(--bg-3000);
background-color: var(--accent-3000);

&--disabled:hover {
background-color: var(--bg-3000) !important;
background-color: var(--accent-3000) !important;
}
}
}
2 changes: 1 addition & 1 deletion frontend/src/lib/components/Errors/ErrorDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export function ErrorDisplay({ eventProperties }: { eventProperties: EventType['
<TitledSnack title="os" value={$os ? `${$os} ${$os_version}` : 'unknown'} />
</div>

<LemonDivider dashed={true} />
{ingestionErrors || exceptionWithStack ? <LemonDivider dashed={true} /> : null}
{ingestionErrors && (
<>
<LemonBanner type="error">
Expand Down

0 comments on commit 317fe63

Please sign in to comment.