TF-4227 Set default background color for Tag

This commit is contained in:
dab246
2026-01-07 11:35:57 +07:00
committed by Dat H. Pham
parent 00ce5b4a1f
commit a4aceec107
+1 -1
View File
@@ -15,7 +15,7 @@ extension LabelExtension on Label {
if (id?.value == moreLabelId) {
return AppColor.grayBackgroundColor;
} else {
return color?.value.toColor();
return color?.value.toColor() ?? AppColor.primaryMain;
}
}