Skip to content

Commit

Permalink
Merge pull request unoplatform#17425 from unoplatform/dev/mara/fix-hr-ui
Browse files Browse the repository at this point in the history
fix: diagnostics anchor theme, notif texts and new icons
  • Loading branch information
dr1rrb authored Jul 9, 2024
2 parents d67dab2 + 43d7096 commit 7ffa6e5
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ internal record DevServerEntry() : HotReloadLogEntry(EntrySource.DevServer, -1,
({ InvalidFrames.Count: 0 }, { InvalidFrames.Count: > 0 }) => (EntryIcon.Warning, "Unknown messages"),
({ MissingRequiredProcessors.IsEmpty: true }, { MissingRequiredProcessors.IsEmpty: false }) => (EntryIcon.Warning, "Processors missing"),

({ KeepAlive.State: KeepAliveState.Idle or KeepAliveState.Ok }, { KeepAlive.State: KeepAliveState.Late }) => (EntryIcon.Error, "Connection lost (> 1000ms)"),
({ KeepAlive.State: KeepAliveState.Idle or KeepAliveState.Ok }, { KeepAlive.State: KeepAliveState.Lost }) => (EntryIcon.Error, "Connection lost (> 1s)"),
({ KeepAlive.State: KeepAliveState.Idle or KeepAliveState.Ok }, { KeepAlive.State: KeepAliveState.Late }) => (EntryIcon.Error, "Connection lost (>1000ms)"),
({ KeepAlive.State: KeepAliveState.Idle or KeepAliveState.Ok }, { KeepAlive.State: KeepAliveState.Lost }) => (EntryIcon.Error, "Connection lost (>1s)"),
({ KeepAlive.State: KeepAliveState.Idle or KeepAliveState.Ok }, { KeepAlive.State: KeepAliveState.Aborted }) => (EntryIcon.Error, "Connection lost (keep-alive)"),
({ State: ConnectionState.Connected }, { State: ConnectionState.Disconnected }) => (EntryIcon.Error, "Connection lost"),

Expand Down
Loading

0 comments on commit 7ffa6e5

Please sign in to comment.