Git support (#143)

This commit is contained in:
Gregory Schier
2025-02-07 07:59:48 -08:00
committed by GitHub
parent cffc7714c1
commit 1a7c27663a
111 changed files with 4264 additions and 372 deletions

View File

@@ -214,16 +214,16 @@ function EventRow({
)}
>
<Icon
className={
color={
eventType === 'server_message'
? 'text-info'
? 'info'
: eventType === 'client_message'
? 'text-primary'
? 'primary'
: eventType === 'error' || (status != null && status > 0)
? 'text-danger'
? 'danger'
: eventType === 'connection_end'
? 'text-success'
: 'text-text-subtle'
? 'success'
: undefined
}
title={
eventType === 'server_message'