Breadcrumb level emphasis in issue overview

Hi there!

I’m pretty new to Sentry and I’m still getting used to it. I’m using the dotnet SDK and I’m currently trying out the different severity levels for breadcrumbs. If I’m correct, there are 5 different severity levels and these should each be displayed differently on the issue where they are reported. However, the breadcrumbs set at “BreadcrumbLevel.Critical” don’t seem to have this emphasis:

As you can see, “error” and “warning” (breadcrumbs 2 and 1) both get a color-emphasized box. The “critical” breadcrumb, however, doesn’t.

The code I use to generate these breadcrumbs is as follows:

catch (Exception ex)
{
    SentrySdk.AddBreadcrumb(
        message: "3",
        level: Sentry.Protocol.BreadcrumbLevel.Critical
        );
     SentrySdk.AddBreadcrumb(
         message: "2",
         level: Sentry.Protocol.BreadcrumbLevel.Error
         );
    SentrySdk.AddBreadcrumb(
        message: "1",
        level: Sentry.Protocol.BreadcrumbLevel.Warning
        );
    SentrySdk.AddBreadcrumb(
        message: "0",
        level: Sentry.Protocol.BreadcrumbLevel.Info
        );
    SentrySdk.AddBreadcrumb(
         message: "-1",
         level: Sentry.Protocol.BreadcrumbLevel.Debug
         );
    SentrySdk.CaptureException(ex);

Is there something I’m doing wrong here, or is this intended behavior?

Thanks for reading.