B: Fix triple position color

This commit is contained in:
Ivan 2025-07-29 15:21:41 +03:00
parent e69638799a
commit f78bda5057

View File

@ -102,7 +102,7 @@ export function toggleTristateFlag(prev: boolean | null): boolean | null {
*/
export function tripleToggleColor(value: boolean | null): string | undefined {
if (value === null) {
return undefined;
return '';
}
return value ? 'text-constructive' : 'text-destructive';
}