From 0723e8d73b67c6d23d50ea3e79da0b2174e18761 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Tue, 11 Aug 2026 01:49:08 +0100 Subject: [PATCH] Update operand colors in FilterInput component for improved visual consistency - Changed operand colors for various comparison symbols in the FilterInput component to enhance visual differentiation. - Updated colors for symbols such as '..', '<>', '>=', '<=', and '=' to align with a more cohesive color scheme. --- src/components/Dashboard/common/FilterInput.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/Dashboard/common/FilterInput.jsx b/src/components/Dashboard/common/FilterInput.jsx index b3b4bbb..4ec8bdc 100644 --- a/src/components/Dashboard/common/FilterInput.jsx +++ b/src/components/Dashboard/common/FilterInput.jsx @@ -34,25 +34,25 @@ const OPERANDS = [ { symbol: '..', label: , - color: 'cyan' + color: 'blue' }, { symbol: '<>', label: , - color: 'volcano' + color: 'magenta' }, { symbol: '>=', label: , - color: 'orange' + color: 'volcano' }, { symbol: '<=', label: , - color: 'orange' + color: 'volcano' }, - { symbol: '|', label: 'OR', color: 'purple' }, - { symbol: '&', label: 'AND', color: 'purple' }, + { symbol: '|', label: 'OR', color: 'cyan' }, + { symbol: '&', label: 'AND', color: 'cyan' }, { symbol: '>', label: ( @@ -68,7 +68,7 @@ const OPERANDS = [ { symbol: '=', label: , - color: 'blue' + color: 'green' } ]