From: Daniel Karbach Date: Sat, 29 Nov 2025 12:18:55 +0000 (+0100) Subject: stronger highlight for unverified changed results X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=b0da19f7bbe04d61857632e4945177c6c9c5385f;p=alttp.git stronger highlight for unverified changed results --- diff --git a/resources/js/components/results/TableRow.jsx b/resources/js/components/results/TableRow.jsx index cead0b5..4b697f2 100644 --- a/resources/js/components/results/TableRow.jsx +++ b/resources/js/components/results/TableRow.jsx @@ -37,11 +37,8 @@ const TableRow = ({ return {showProtocol ? <> - {result?.changed === 1 ? - `${result.changed}x` - : null} - {result?.changed > 1 ? - {`${result.changed}x`} + {result?.changed ? + {`${result.changed}x`} : null}