From fc4bfca61b2cb6bad08e513bf74f6ed5e42259b6 Mon Sep 17 00:00:00 2001 From: zaid_daoud Date: Mon, 6 Nov 2023 14:55:45 +0300 Subject: [PATCH] Fix preventive maintenance status colors --- lib/views/app_style/colors.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/app_style/colors.dart b/lib/views/app_style/colors.dart index 65c9db8b..e323f7ca 100644 --- a/lib/views/app_style/colors.dart +++ b/lib/views/app_style/colors.dart @@ -45,7 +45,7 @@ class AColors { switch ((status ?? "").toLowerCase()) { case "in progress": return AColors.statusYellowLight; - case "completed": + case "complete": return AColors.statusGreenLight; case "closed": return AColors.statusGreenLight;