Fix Table diff colors (#1084)

This commit is contained in:
Sebastian Stachowicz
2025-08-01 02:36:03 +00:00
committed by GitHub
parent 9598553e5d
commit 3002d250a1
6 changed files with 33 additions and 15 deletions

View File

@@ -95,7 +95,7 @@ function DomLabel:render()
return Theme.with(function(theme)
local color = if props.isWarning
then theme.Diff.Warning
elseif props.patchType then theme.Diff[props.patchType]
elseif props.patchType then theme.Diff.Background[props.patchType]
else theme.TextColor
local indent = (depth - 1) * 12 + 15