fix: connect status icon color online

This commit is contained in:
Zack Spear
2023-08-01 17:20:09 -07:00
parent 3658eb0a0c
commit 780dce53f9

View File

@@ -43,7 +43,7 @@ const status = computed((): StatusOutput | undefined => {
if (unraidApiStatus.value === 'online') {
return {
icon: CheckCircleIcon,
iconClasses: 'text-red-500 w-16px h-16px',
iconClasses: 'text-red-600 w-16px h-16px',
text: props.t('Connected'),
};
}